blob: 32cfeb5999d5dceef4af241e7a11e645cd7e38cb [file] [log] [blame]
#pragma once
#include <Python.h>
inline PyCFunction castPyCFunctionWithKeywords(PyCFunctionWithKeywords func) {
// NOLINTNEXTLINE(modernize-redundant-void-arg)
return (PyCFunction)(void(*)(void))func;
}