mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +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
7 lines
88 B
Python
7 lines
88 B
Python
class C:
|
|
def foo(self):
|
|
x = 1
|
|
y = 2
|
|
|
|
def bar(self):
|
|
pass |