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