diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-05-28 22:30:08 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-05-28 22:30:08 (GMT) |
commit | 4324aa3572f123883e67a807b633b3d0d452a267 (patch) | |
tree | 60fd3ab62d4cc58c75e4cf58599e3b7d59a5cfb1 /Include/tupleobject.h | |
parent | 6a922372ad24a86306d70889e67edb03815d07c0 (diff) | |
download | cpython-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.h | 2 |
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]) |