PY-296 'Move statement up/down' on method name line should move the whole method

This commit is contained in:
alexey.ivanov
2010-05-05 21:57:31 +04:00
parent d6bc7f8af5
commit 929c46c54b
24 changed files with 577 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
def f(a, b, c):
if b:
pass
elif a:
c = <selection>1
if b:
a = 3
else:
b<caret></selection> = 4
else:
pass