diff options
Diffstat (limited to 'Include/code.h')
-rw-r--r-- | Include/code.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Include/code.h b/Include/code.h index 8c00700..0167ad4 100644 --- a/Include/code.h +++ b/Include/code.h @@ -70,6 +70,11 @@ PyAPI_FUNC(PyCodeObject *) PyCode_New( int, int, int, int, PyObject *, PyObject *, PyObject *, PyObject *, PyObject *, PyObject *, PyObject *, PyObject *, int, PyObject *); /* same as struct above */ + +/* Creates a new empty code object with the specified source location. */ +PyAPI_FUNC(PyCodeObject *) +PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno); + PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int); /* for internal use only */ |