diff options
author | Guido van Rossum <guido@python.org> | 2003-02-09 17:19:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-02-09 17:19:18 (GMT) |
commit | d58f3fce3d1db5b725443788c16f375cb052f4e5 (patch) | |
tree | bccdfe7a05b396636bc6ce96f9d189fb790f27a1 /Modules/itertoolsmodule.c | |
parent | 60eca9331a1c2594b1331678d715e6177386c3a4 (diff) | |
download | cpython-d58f3fce3d1db5b725443788c16f375cb052f4e5.zip cpython-d58f3fce3d1db5b725443788c16f375cb052f4e5.tar.gz cpython-d58f3fce3d1db5b725443788c16f375cb052f4e5.tar.bz2 |
Remove unused variable.
Diffstat (limited to 'Modules/itertoolsmodule.c')
-rw-r--r-- | Modules/itertoolsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index e32ef8c..5766b75 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -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; |