1 #ifndef Py_INTERNAL_FUNCTION_H 2 #define Py_INTERNAL_FUNCTION_H 3 #ifdef __cplusplus 4 extern "C" { 5 #endif 6 7 #ifndef Py_BUILD_CORE 8 # error "this header requires Py_BUILD_CORE define" 9 #endif 10 11 extern PyFunctionObject* _PyFunction_FromConstructor(PyFrameConstructor *constr); 12 13 extern uint32_t _PyFunction_GetVersionForCurrentState(PyFunctionObject *func); 14 15 #ifdef __cplusplus 16 } 17 #endif 18 #endif /* !Py_INTERNAL_FUNCTION_H */ 19