pytorch/torch/csrc/utils/pycfunction_helpers.h
2022-06-11 21:11:16 +00:00

9 lines
210 B
C

#pragma once
#include <Python.h>
inline PyCFunction castPyCFunctionWithKeywords(PyCFunctionWithKeywords func) {
// NOLINTNEXTLINE(modernize-redundant-void-arg)
return (PyCFunction)(void (*)(void))func;
}