mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fixed PY-6271 Move statement: breaks code in case of empty line between parts of compound statement
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
if True:
|
||||
a = 1<caret> # <- move statement down here
|
||||
|
||||
else:
|
||||
b = 2
|
||||
@@ -0,0 +1,5 @@
|
||||
if True:
|
||||
|
||||
a = 1<caret> # <- move statement down here
|
||||
else:
|
||||
b = 2
|
||||
@@ -0,0 +1,6 @@
|
||||
a = 1<caret> # <- move statement down here
|
||||
if True:
|
||||
pass
|
||||
|
||||
else:
|
||||
b = 2
|
||||
Reference in New Issue
Block a user