| commit | e4685ec57e74ec37f234907df45159bcd1899a25 | [log] [tgz] |
|---|---|---|
| author | Jeremy Hylton <jeremy@alum.mit.edu> | Wed Aug 29 22:30:09 2001 +0000 |
| committer | Jeremy Hylton <jeremy@alum.mit.edu> | Wed Aug 29 22:30:09 2001 +0000 |
| tree | 389d0a03ecaddcb9132404911c3752f54d7a6645 | |
| parent | 9263848fa154ad2ba5288bf5adeda22d7c90f8a2 [diff] |
Track the block stack more reasonably in order to handle continue in try/except or try/finally. Previous versions had only track SETUP_LOOP blocks and ignored the exception part. This meant that it allowed continue inside a try/except but generated buggy code. Now it does the right thing.