mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
otherwise it's easy to overlook it especially considering that there is also (confusingly) PyAddImportTest
7 lines
150 B
Python
7 lines
150 B
Python
class A:
|
|
def __init__(self):
|
|
self.x = 1
|
|
|
|
a = A()
|
|
a.<caret><warning descr="Unresolved attribute reference 'y' for class 'A'">y</warning>()
|