mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
otherwise it's easy to overlook it especially considering that there is also (confusingly) PyAddImportTest
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)
|
|
|