mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
135 B
Python
12 lines
135 B
Python
|
|
class A:
|
|
def __init__(self):
|
|
self._x = 1
|
|
|
|
def _foo(self):
|
|
print(self._x)
|
|
|
|
a = A()
|
|
a._f<caret>oo()
|
|
|
|
print(a._x) |