mirror of
https://github.com/python/cpython.git
synced 2025-11-02 11:08:57 +00:00
Remove unused variable.
This commit is contained in:
parent
60eca9331a
commit
d58f3fce3d
2 changed files with 1 additions and 2 deletions
|
|
@ -1118,7 +1118,7 @@ PyTypeObject ifilterfalse_type;
|
|||
static PyObject *
|
||||
ifilterfalse_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
||||
{
|
||||
PyObject *func, *seq, *invert=NULL;
|
||||
PyObject *func, *seq;
|
||||
PyObject *it;
|
||||
ifilterfalseobject *lz;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue