mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
It also preserves original indentation of updated constructor and handles comments at the end of the function body better.
11 lines
167 B
Python
11 lines
167 B
Python
class A:
|
|
def __init__(self):
|
|
pass
|
|
|
|
|
|
class B(A):
|
|
def __init__(self):
|
|
# comment #1
|
|
A.__init__(self)
|
|
# comment #2
|
|
print 42 |