fixed PY-5270 Move statement: unexpected move on trying to move one-line comment within indented block

This commit is contained in:
Ekaterina Tuzova
2012-03-22 15:50:31 +04:00
parent ab0df25b01
commit 5caf729b30
5 changed files with 29 additions and 12 deletions
+5
View File
@@ -0,0 +1,5 @@
for item in lst:
#comment <caret>
c = 1
a = 1
b = 1
@@ -0,0 +1,5 @@
for item in lst:
c = 1
#comment <caret>
a = 1
b = 1
+5
View File
@@ -0,0 +1,5 @@
#comment <caret>
for item in lst:
c = 1
a = 1
b = 1