summaryrefslogtreecommitdiffstats
path: root/Include/listobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-20 16:52:42 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-20 16:52:42 (GMT)
commit855d0b36026107d9625a8f5c3ac68d015daf35b2 (patch)
treedd38aeffb852e7276cb398b5301606eb2a4dac67 /Include/listobject.h
parent6403d284b0d5f66fc1284fd40189a59ac061b631 (diff)
downloadcpython-855d0b36026107d9625a8f5c3ac68d015daf35b2.zip
cpython-855d0b36026107d9625a8f5c3ac68d015daf35b2.tar.gz
cpython-855d0b36026107d9625a8f5c3ac68d015daf35b2.tar.bz2
corrected two unconverted names
Diffstat (limited to 'Include/listobject.h')
-rw-r--r--Include/listobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/listobject.h b/Include/listobject.h
index 47d30e4..8e5e973 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])