mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 21:53:58 +07:00
Visit with-statements while collecting targets inside `__int__` and `__new__` methods
7 lines
153 B
Python
7 lines
153 B
Python
class Foo(object):
|
|
def __init__(self):
|
|
with open('scope') as self.scope:
|
|
pass
|
|
|
|
def get_scope(self):
|
|
return self.scope |