mirror of
https://github.com/python/cpython.git
synced 2025-07-15 23:35:23 +00:00
Stop looping to do nothing, just pass.
This commit is contained in:
parent
d752f7d8e8
commit
ef260c0803
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue