]> granicus.if.org Git - python/commitdiff
Remove unused variable.
authorGuido van Rossum <guido@python.org>
Sun, 9 Feb 2003 17:19:18 +0000 (17:19 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 9 Feb 2003 17:19:18 +0000 (17:19 +0000)
Modules/itertoolsmodule.c
Modules/parsermodule.c

index e32ef8cfed2a60ae215417fb907a8171359ab532..5766b75bc05beb5d2ef59f574cef17aa4ed84f6d 100644 (file)
@@ -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;
 
index a8344d11beabe6798ebdd141763c1766ae13142a..d082c09f15e5038928d756dcecf7d0bf794e0176 100644 (file)
@@ -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);