mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
9 lines
124 B
Python
9 lines
124 B
Python
class C:
|
|
@classmethod
|
|
def foo(cls):
|
|
cls.baz()
|
|
|
|
@classmethod
|
|
def baz(cls):
|
|
print('foo', cls)
|