From: Tim Peters Date: Tue, 22 Aug 2000 01:44:16 +0000 (+0000) Subject: Nuked unused variable. X-Git-Tag: v2.0b1~318 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=72b93ec1c38a8fb258c2dfcee9735c820c77130b;p=thirdparty%2FPython%2Fcpython.git Nuked unused variable. --- diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 57a304602045..65ca0844b852 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)