diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/compile.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Include/compile.h b/Include/compile.h index 27a3f76..01fd756 100644 --- a/Include/compile.h +++ b/Include/compile.h @@ -11,11 +11,6 @@ extern "C" { /* Public interface */ struct _node; /* Declare the existence of this type */ PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *); -PyAPI_FUNC(PyCodeObject *) PyCode_New( - int, int, int, int, PyObject *, PyObject *, PyObject *, PyObject *, - PyObject *, PyObject *, PyObject *, PyObject *, int, PyObject *); - /* same as struct above */ -PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int); /* Future feature support */ |