mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-24 14:28:56 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
8 lines
119 B
Python
8 lines
119 B
Python
class C:
|
|
@staticmethod
|
|
def foo():
|
|
C.baz()
|
|
|
|
@staticmethod
|
|
def baz():
|
|
print "hello world" |