mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-15 20:26:04 +07:00
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
|
|
|