mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
10 lines
102 B
Python
10 lines
102 B
Python
class A(object):
|
|
__class__ = 15
|
|
|
|
class B(A):
|
|
pass
|
|
|
|
|
|
b = B()
|
|
print(b.__class__)
|
|
# <ref> |