mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 15:03:36 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
11 lines
141 B
Python
11 lines
141 B
Python
|
|
class A:
|
|
def baz(self):
|
|
self.foo()
|
|
self.foo()
|
|
|
|
def foo(self):
|
|
print 1
|
|
|
|
def bar(self):
|
|
self.foo() |