corrected two unconverted names

This commit is contained in:
Guido van Rossum 1995-01-20 16:52:42 +00:00
parent 6403d284b0
commit 855d0b3602
2 changed files with 2 additions and 2 deletions

View file

@ -63,7 +63,7 @@ extern PyObject *PyList_GetSlice Py_PROTO((PyObject *, int, int));
extern int PyList_SetSlice Py_PROTO((PyObject *, int, int, PyObject *));
extern int PyList_Sort Py_PROTO((PyObject *));
extern int PyList_Reverse Py_PROTO((PyObject *));
extern PyObject *listtuple Py_PROTO((PyObject *));
extern PyObject *PyList_AsTuple Py_PROTO((PyObject *));
/* Macro, trading safety for speed */
#define PyList_GET_ITEM(op, i) ((op)->ob_item[i])