mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
10 lines
178 B
Python
10 lines
178 B
Python
class C:
|
|
def foo(self, option, arg):
|
|
if option:
|
|
self.baz(arg)
|
|
|
|
def baz(self, arg_new):
|
|
self.bar(arg_new)
|
|
|
|
def bar(self, arg):
|
|
pass |