diff options
Diffstat (limited to 'Include/frameobject.h')
-rw-r--r-- | Include/frameobject.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h index d1a310a..10d4935 100644 --- a/Include/frameobject.h +++ b/Include/frameobject.h @@ -46,8 +46,7 @@ extern DL_IMPORT(PyTypeObject) PyFrame_Type; #define PyFrame_Check(op) ((op)->ob_type == &PyFrame_Type) DL_IMPORT(PyFrameObject *) PyFrame_New(PyThreadState *, PyCodeObject *, - PyObject *, PyObject *, - PyObject *); + PyObject *, PyObject *); /* The rest of the interface is specific for frame objects */ |