mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fixed PY-5197 Move statement: inconsistent skipping of empty lines
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
if condition1:
|
||||
pass
|
||||
|
||||
if condi<caret>tion:
|
||||
test1()
|
||||
else:
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
if condition1:
|
||||
pass
|
||||
|
||||
if condition:
|
||||
test1()
|
||||
else:
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user