mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
fixed PY-6410 Adding/Pasting text at the end of a class method causes the next class method to be moved outside the class
8 lines
102 B
Python
8 lines
102 B
Python
class C:
|
|
def foo(self):
|
|
def foo(self):
|
|
x = 1
|
|
y = 2
|
|
|
|
y = 2
|