mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 23:46:49 +07:00
PY-19412 Fixed: Class method support becomes broken if method attribute is used Check all next siblings stubs of PyTargetExpressionStub type in function modifier calculating and honour all nullable values
7 lines
99 B
Python
7 lines
99 B
Python
class Spam(object):
|
|
|
|
def spam(cls):
|
|
pass
|
|
|
|
eggs = False
|
|
spam = classmethod(spam) |