Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 855d0b3

Browse files
committed
corrected two unconverted names
1 parent 6403d28 commit 855d0b3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Include/classobject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ extern PyObject *PyMethod_Class Py_PROTO((PyObject *));
7171

7272
extern int PyClass_IsSubclass Py_PROTO((PyObject *, PyObject *));
7373

74-
extern PyObject *instancebinop
74+
extern PyObject *PyInstance_DoBinOp
7575
Py_PROTO((PyObject *, PyObject *,
7676
char *, char *,
7777
PyObject * (*) Py_PROTO((PyObject *, PyObject *)) ));

Include/listobject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ extern PyObject *PyList_GetSlice Py_PROTO((PyObject *, int, int));
6363
extern int PyList_SetSlice Py_PROTO((PyObject *, int, int, PyObject *));
6464
extern int PyList_Sort Py_PROTO((PyObject *));
6565
extern int PyList_Reverse Py_PROTO((PyObject *));
66-
extern PyObject *listtuple Py_PROTO((PyObject *));
66+
extern PyObject *PyList_AsTuple Py_PROTO((PyObject *));
6767

6868
/* Macro, trading safety for speed */
6969
#define PyList_GET_ITEM(op, i) ((op)->ob_item[i])

0 commit comments

Comments
 (0)