diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:01:01 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:01:01 +0000 |
commit | 938178283c29cdc2c8f5004d58dff110ac907883 (patch) | |
tree | 7d38251f32f2bb35f58e40aed465785f6f7039f4 /Include/listobject.h | |
parent | evolution (diff) | |
download | cpython-938178283c29cdc2c8f5004d58dff110ac907883.tar.gz cpython-938178283c29cdc2c8f5004d58dff110ac907883.tar.bz2 cpython-938178283c29cdc2c8f5004d58dff110ac907883.zip |
new names for lots of new functions
Diffstat (limited to 'Include/listobject.h')
-rw-r--r-- | Include/listobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/listobject.h b/Include/listobject.h index 083a44b34d9..47d30e45913 100644 --- a/Include/listobject.h +++ b/Include/listobject.h @@ -62,6 +62,7 @@ extern int PyList_Append Py_PROTO((PyObject *, PyObject *)); 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 *)); /* Macro, trading safety for speed */ |