mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
otherwise it's easy to overlook it especially considering that there is also (confusingly) PyAddImportTest
11 lines
128 B
Python
11 lines
128 B
Python
__author__ = 'ktisha'
|
|
|
|
class A(object):
|
|
|
|
FIELD = None
|
|
|
|
def method(self):
|
|
var = A.FIELD
|
|
var = self.test
|
|
|