mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
7 lines
110 B
Python
7 lines
110 B
Python
class A(object):
|
|
my_attr = 4
|
|
|
|
class B(A):
|
|
def foo(self):
|
|
return my_attr
|
|
# <ref> |