mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
9 lines
110 B
Python
9 lines
110 B
Python
class A:
|
|
x = 1
|
|
y = 1
|
|
|
|
class B(A):
|
|
def foo(self):
|
|
self.__repr__()
|
|
# <ref>
|
|
|