mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 06:18:32 +07:00
15 lines
146 B
Python
15 lines
146 B
Python
|
|
|
|
class A:
|
|
def __init__(self):
|
|
self._x = 1
|
|
|
|
def _foo(self):
|
|
pass
|
|
|
|
|
|
a_class = A()
|
|
a_class._foo()
|
|
print(a_class._<caret>x)
|
|
|