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 /Python | |
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 'Python')
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 78e2f37..1e9868a 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -2329,7 +2329,7 @@ filtertuple(PyObject *func, PyObject *tuple) } } - if (_PyTuple_Resize(&result, j, 0) < 0) + if (_PyTuple_Resize(&result, j) < 0) return NULL; return result; |