class A:
def __enter__(self):
return self
def __exit__(self, exc_type, exc_value, traceback):
raise Exception('A')
在 __exit__ 一定會丟出 Exception 的情況下,底下這段的結果在預期之中
>>>> with A():
.... pass
....
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
File "<stdin>", line 5, in __exit__
Exception: A
但底下這段就有問題了,先丟出的 Exception 被後丟出的覆蓋
>>>> with A():
.... raise Exception('B')
....
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
File "<stdin>", line 5, in __exit__
Exception: A
請問該怎麼寫才能比較好處理這種情況?
我遇上 A, B, C 的 __exit__ 都有可能丟出 Exception
程式本體也有可能丟出 Exception,像這樣
>>> with A(), B(), C():
... raise Exception('D')
...
結果一團亂,根本不知道要怎麼處理...