mirror of
https://github.com/bendtherules/pyFun.git
synced 2026-08-18 13:52:46 +00:00
14 lines
153 B
Python
14 lines
153 B
Python
class A(object):
|
|
|
|
"""docstring for A"""
|
|
a = 2
|
|
pass
|
|
|
|
|
|
class B(object):
|
|
|
|
"""docstring for A"""
|
|
pass
|
|
b = A.a
|
|
|
|
print("Run completed") |