diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-08-28 17:28:33 +0000 |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-08-28 17:28:33 +0000 |
commit | 2ac9c3eec5807b6032e5aef6481fcf67c1965efc (patch) | |
tree | e23b3ceeda27b2b70fa8afba66baf785e84dba20 /Lib/compiler/pycodegen.py | |
parent | cbfc855f57ab6ad7920857bba3a8e2475ef0fb33 (diff) | |
download | cpython-git-2ac9c3eec5807b6032e5aef6481fcf67c1965efc.tar.gz |
Make sure the JUMP_ABSOLUTE and POP_BLOCK at the end of a for loop are
contiguous.
Diffstat (limited to 'Lib/compiler/pycodegen.py')
-rw-r--r-- | Lib/compiler/pycodegen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py index 37dbcfdfe5..882e6b1a2b 100644 --- a/Lib/compiler/pycodegen.py +++ b/Lib/compiler/pycodegen.py @@ -363,7 +363,7 @@ class CodeGenerator: self.visit(node.assign) self.visit(node.body) self.emit('JUMP_ABSOLUTE', start) - self.startBlock(anchor) + self.nextBlock(anchor) self.emit('POP_BLOCK') self.loops.pop() if node.else_: |