Files
Semyon Proshev 0e377b5dc6 PY-21651 Fixed: Unresolved reference for attributes created by with statements
Visit with-statements while collecting targets inside `__int__` and `__new__` methods
2017-02-07 13:51:25 +03:00

4 lines
101 B
Python

class Foo(object):
def __init__(self):
with open('scope') as self.scope:
pass