mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
otherwise it's easy to overlook it especially considering that there is also (confusingly) PyAddImportTest
8 lines
79 B
Python
8 lines
79 B
Python
class A:
|
|
def __init__(self):
|
|
self.y = None
|
|
self.x = 1
|
|
|
|
a = A()
|
|
a.y+1
|