summaryrefslogtreecommitdiffstats
path: root/Include/tupleobject.h
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-05-28 22:30:08 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-05-28 22:30:08 (GMT)
commit4324aa3572f123883e67a807b633b3d0d452a267 (patch)
tree60fd3ab62d4cc58c75e4cf58599e3b7d59a5cfb1 /Include/tupleobject.h
parent6a922372ad24a86306d70889e67edb03815d07c0 (diff)
downloadcpython-4324aa3572f123883e67a807b633b3d0d452a267.zip
cpython-4324aa3572f123883e67a807b633b3d0d452a267.tar.gz
cpython-4324aa3572f123883e67a807b633b3d0d452a267.tar.bz2
Cruft cleanup: Removed the unused last_is_sticky argument from the internal
_PyTuple_Resize().
Diffstat (limited to 'Include/tupleobject.h')
-rw-r--r--Include/tupleobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/tupleobject.h b/Include/tupleobject.h
index 9a61484..bf20854 100644
--- a/Include/tupleobject.h
+++ b/Include/tupleobject.h
@@ -33,7 +33,7 @@ extern DL_IMPORT(int) PyTuple_Size(PyObject *);
extern DL_IMPORT(PyObject *) PyTuple_GetItem(PyObject *, int);
extern DL_IMPORT(int) PyTuple_SetItem(PyObject *, int, PyObject *);
extern DL_IMPORT(PyObject *) PyTuple_GetSlice(PyObject *, int, int);
-extern DL_IMPORT(int) _PyTuple_Resize(PyObject **, int, int);
+extern DL_IMPORT(int) _PyTuple_Resize(PyObject **, int);
/* Macro, trading safety for speed */
#define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i])