added ability to move continue/break/pass

This commit is contained in:
Ekaterina Tuzova
2013-08-26 15:04:20 +04:00
parent d3103c0f89
commit 846eed9ad5
3 changed files with 7 additions and 5 deletions
@@ -1,4 +1,6 @@
test()
for item in range(10):
continue
test1()
continue
for item in range(10):
pass
test1()
@@ -1,4 +1,6 @@
class B(Exception):
pass #<---here
pass #<---here
class B(Exception):
pass
class C(B):
pass