fixed PY-5197 Move statement: inconsistent skipping of empty lines

This commit is contained in:
Ekaterina Tuzova
2011-12-02 12:45:03 +01:00
parent 72760de60a
commit ef2640a510
7 changed files with 28 additions and 2 deletions
-1
View File
@@ -1,6 +1,5 @@
if condition1:
pass
if condi<caret>tion:
test1()
else:
@@ -1,6 +1,5 @@
if condition1:
pass
if condition:
test1()
else:
+4
View File
@@ -0,0 +1,4 @@
if True:
a = 1
b =<caret> 2
@@ -0,0 +1,4 @@
if True:
a = 1
b = 2
@@ -0,0 +1,4 @@
if True:
a = 1
b = 2