diff options
author | Guido van Rossum <guido@python.org> | 1995-01-20 16:52:42 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-20 16:52:42 +0000 |
commit | 855d0b36026107d9625a8f5c3ac68d015daf35b2 (patch) | |
tree | dd38aeffb852e7276cb398b5301606eb2a4dac67 /Include/listobject.h | |
parent | 6403d284b0d5f66fc1284fd40189a59ac061b631 (diff) | |
download | cpython-git-855d0b36026107d9625a8f5c3ac68d015daf35b2.tar.gz |
corrected two unconverted names
Diffstat (limited to 'Include/listobject.h')
-rw-r--r-- | Include/listobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/listobject.h b/Include/listobject.h index 47d30e4591..8e5e9731b1 100644 --- a/Include/listobject.h +++ b/Include/listobject.h @@ -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]) |