mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
12 lines
130 B
Python
12 lines
130 B
Python
class A():
|
|
def method(self):
|
|
print(1)
|
|
|
|
|
|
class B(A):
|
|
def method(self):
|
|
print(2)
|
|
|
|
|
|
b = B()
|
|
b.meth<caret>od() |