mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
Visit with-statements while collecting targets inside `__int__` and `__new__` methods
4 lines
101 B
Python
4 lines
101 B
Python
class Foo(object):
|
|
def __init__(self):
|
|
with open('scope') as self.scope:
|
|
pass |