mirror of https://github.com/python/cpython.git
12 lines
200 B
C
12 lines
200 B
C
|
#ifndef Py_INTERNAL_FUNCTION_H
|
||
|
#define Py_INTERNAL_FUNCTION_H
|
||
|
|
||
|
|
||
|
#include "Python.h"
|
||
|
|
||
|
PyFunctionObject *
|
||
|
_PyFunction_FromConstructor(PyFrameConstructor *constr);
|
||
|
|
||
|
|
||
|
#endif /* !Py_INTERNAL_FUNCTION_H */
|