blob: dc4422df3eb5312b593e1c115e9ef7a97d241b7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef Py_INTERNAL_FUNCTION_H
#define Py_INTERNAL_FUNCTION_H
#include "Python.h"
PyFunctionObject *
_PyFunction_FromConstructor(PyFrameConstructor *constr);
#endif /* !Py_INTERNAL_FUNCTION_H */
|