mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
11 lines
110 B
Python
11 lines
110 B
Python
def foo():
|
|
c = bar()
|
|
return c
|
|
|
|
|
|
def bar():
|
|
class C(object):
|
|
pass
|
|
|
|
c = C()
|
|
return c |