Cruft cleanup: Removed the unused last_is_sticky argument from the internal

_PyTuple_Resize().
This commit is contained in:
Tim Peters 2001-05-28 22:30:08 +00:00
parent 6a922372ad
commit 4324aa3572
6 changed files with 15 additions and 10 deletions

View file

@ -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;