From ef260c080336265fd6a08b13500a526758ebe389 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 25 Nov 2005 03:18:58 +0000 Subject: [PATCH] Stop looping to do nothing, just pass. --- Lib/compiler/syntax.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/compiler/syntax.py b/Lib/compiler/syntax.py index 88c1453a1fa..a45d9c2cf6f 100644 --- a/Lib/compiler/syntax.py +++ b/Lib/compiler/syntax.py @@ -38,8 +38,8 @@ class SyntaxErrorChecker: def visitAssign(self, node): # the transformer module handles many of these - for target in node.nodes: - pass + pass +## for target in node.nodes: ## if isinstance(target, ast.AssList): ## if target.lineno is None: ## target.lineno = node.lineno