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/parsermodule.c | |
parent | 60eca9331a1c2594b1331678d715e6177386c3a4 (diff) | |
download | cpython-d58f3fce3d1db5b725443788c16f375cb052f4e5.zip cpython-d58f3fce3d1db5b725443788c16f375cb052f4e5.tar.gz cpython-d58f3fce3d1db5b725443788c16f375cb052f4e5.tar.bz2 |
Remove unused variable.
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r-- | Modules/parsermodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index a8344d1..d082c09 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); |