mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
fixed PY-9253 Broken "add field to class" adds the field to the instance instead.
moved tests to the separate testCase
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
__author__ = 'ktisha'
|
||||
|
||||
class A(object):
|
||||
|
||||
FIELD = None
|
||||
|
||||
def method(self):
|
||||
var = A.FIELD
|
||||
var = self.test
|
||||
|
||||
Reference in New Issue
Block a user