mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
10 lines
104 B
Python
10 lines
104 B
Python
class A(object):
|
|
__sizeof__ = 17
|
|
|
|
class B(A):
|
|
pass
|
|
|
|
|
|
b = B()
|
|
print(b.__sizeof__)
|
|
# <ref> |