mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
10 lines
98 B
Python
10 lines
98 B
Python
class A(object):
|
|
__doc__ = 16
|
|
|
|
class B(A):
|
|
pass
|
|
|
|
|
|
b = B()
|
|
print(b.__doc__)
|
|
# <ref> |