From: Guido van Rossum Date: Sun, 9 Feb 2003 17:19:18 +0000 (+0000) Subject: Remove unused variable. X-Git-Tag: v2.3c1~1957 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d58f3fce3d1db5b725443788c16f375cb052f4e5;p=python Remove unused variable. --- diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index e32ef8cfed..5766b75bc0 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; diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index a8344d11be..d082c09f15 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -772,7 +772,6 @@ build_node_tree(PyObject *tuple) */ int line_num = 0; PyObject *encoding = NULL; - PyObject *tmpTuple = NULL; if (num == encoding_decl) { encoding = PySequence_GetItem(tuple, 2);