summaryrefslogtreecommitdiffstats
path: root/Modules/parsermodule.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-08-22 01:44:16 (GMT)
committerTim Peters <tim.peters@gmail.com>2000-08-22 01:44:16 (GMT)
commit72b93ec1c38a8fb258c2dfcee9735c820c77130b (patch)
treecf6f5c3770257c2c2f67faefccec01d948ffcfc5 /Modules/parsermodule.c
parentff18b800a4bfe80ddb12f50f0543dff159a5a96f (diff)
downloadcpython-72b93ec1c38a8fb258c2dfcee9735c820c77130b.zip
cpython-72b93ec1c38a8fb258c2dfcee9735c820c77130b.tar.gz
cpython-72b93ec1c38a8fb258c2dfcee9735c820c77130b.tar.bz2
Nuked unused variable.
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r--Modules/parsermodule.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c
index 57a3046..65ca084 100644
--- a/Modules/parsermodule.c
+++ b/Modules/parsermodule.c
@@ -1483,7 +1483,6 @@ validate_expr_stmt(node *tree)
static int
validate_print_stmt(node *tree)
{
- int j;
int nch = NCH(tree);
int res = (validate_ntype(tree, print_stmt)
&& (nch > 0)