fixed PY-5196 Move statement: gets stuck on moving class after compound statement

This commit is contained in:
Ekaterina Tuzova
2011-12-02 12:05:34 +01:00
parent fbee7c314f
commit 3c98006baf
5 changed files with 26 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
if condition:
test1()
class B(Exception):
b=1
clas<caret>s C:
pass
+7
View File
@@ -0,0 +1,7 @@
if condition:
test1()
class B(Exception):
b=1
clas<caret>s C:
pass
+7
View File
@@ -0,0 +1,7 @@
if condition:
test1()
class C:
pass
class B(Exception):
b=1