__enter__()
에 예외가 있어도 __exit__()
메서드가 호출되도록 보장 할 수 있습니까?컨텍스트 관리자에서 캐칭 예외 __enter __()
>>> class TstContx(object):
... def __enter__(self):
... raise Exception('Oops in __enter__')
...
... def __exit__(self, e_typ, e_val, trcbak):
... print "This isn't running"
...
>>> with TstContx():
... pass
...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 3, in __enter__
Exception: Oops in __enter__
>>>
편집
이 내가 얻을 수있는만큼 가까운 ... 뒤의 광경에서
class TstContx(object):
def __enter__(self):
try:
# __enter__ code
except Exception as e
self.init_exc = e
return self
def __exit__(self, e_typ, e_val, trcbak):
if all((e_typ, e_val, trcbak)):
raise e_typ, e_val, trcbak
# __exit__ code
with TstContx() as tc:
if hasattr(tc, 'init_exc'): raise tc.init_exc
# code in context
, 컨텍스트 관리자는 최고의 디자인 결정
문제는 '__enter__'안에있는 'with'본문을 건너 뛰는 것이 불가능하다는 것입니다 ([pep 377] (http://www.python.org/dev/peps/pep-0377/) 참조) – georg