diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2005-11-25 03:18:58 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2005-11-25 03:18:58 (GMT) |
commit | ef260c080336265fd6a08b13500a526758ebe389 (patch) | |
tree | 91f20e5bf387250fd78e5f7b720557f5c2a74019 | |
parent | d752f7d8e851eb6160bbb1bb0e506652ec037f10 (diff) | |
download | cpython-ef260c080336265fd6a08b13500a526758ebe389.zip cpython-ef260c080336265fd6a08b13500a526758ebe389.tar.gz cpython-ef260c080336265fd6a08b13500a526758ebe389.tar.bz2 |
Stop looping to do nothing, just pass.
-rw-r--r-- | Lib/compiler/syntax.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/compiler/syntax.py b/Lib/compiler/syntax.py index 88c1453..a45d9c2 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 |