mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 12:14:37 +07:00
8 lines
177 B
Python
8 lines
177 B
Python
class Example1:
|
|
def __init__(self):
|
|
self.field1 = 1
|
|
|
|
|
|
class Example2(Example1):
|
|
def __init__(self): # Some valuable comment here
|
|
Example1.__init__(self) |