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
11 lines
99 B
Python
11 lines
99 B
Python
class A:
|
|
def __init__(self):
|
|
self.x = 1
|
|
|
|
def y(self):
|
|
pass
|
|
|
|
|
|
a = A()
|
|
a.y()
|