fixed PY-6410 Adding/Pasting text at the end of a class method causes the next class method to be moved outside the class

This commit is contained in:
Ekaterina Tuzova
2012-05-05 19:59:37 +04:00
parent d14a19c5b8
commit 45403110b7
6 changed files with 65 additions and 0 deletions
@@ -0,0 +1,3 @@
class A:
a = 1
b = 2
+2
View File
@@ -0,0 +1,2 @@
class A:
<caret> b = 2
+3
View File
@@ -0,0 +1,3 @@
class C:
<selection> a = 1
</selection>