mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +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._foo()
|
|
|
|
print(a._<caret>x) |