mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 01:46:46 +07:00
15 lines
137 B
Python
15 lines
137 B
Python
|
|
|
|
class A:
|
|
def __init__(self):
|
|
self.a = 1
|
|
|
|
def _foo(self):
|
|
pass
|
|
|
|
|
|
a_class = A()
|
|
a_class._foo()
|
|
print(a_class.a)
|
|
|