溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python如何關(guān)閉異常自動關(guān)聯(lián)上下文

發(fā)布時間:2022-03-16 14:58:26 來源:億速云 閱讀:136 作者:小新 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)python如何關(guān)閉異常自動關(guān)聯(lián)上下文,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

如何關(guān)閉異常自動關(guān)聯(lián)上下文

當(dāng)你在處理異常時,由于處理不當(dāng)或者其他問題,再次拋出另一個異常時,往外拋出的異常也會攜帶原始的異常信息。

就像這樣子。

try:     print(1 / 0) except Exception as exc:     raise RuntimeError("Something bad happened")

從輸出可以看到兩個異常信息

Traceback (most recent call last):   File "demo.py", line 2, in <module>     print(1 / 0) ZeroDivisionError: division by zero  During handling of the above exception, another exception occurred:  Traceback (most recent call last):   File "demo.py", line 4, in <module>     raise RuntimeError("Something bad happened") RuntimeError: Something bad happened

如果在異常處理程序或 finally 塊中引發(fā)異常,默認(rèn)情況下,異常機制會隱式工作會將先前的異常附加為新異常的 __context__屬性。這就是  Python 默認(rèn)開啟的自動關(guān)聯(lián)異常上下文。

如果你想自己控制這個上下文,可以加個 from 關(guān)鍵字(from  語法會有個限制,就是第二個表達(dá)式必須是另一個異常類或?qū)嵗?,來表明你的新異常是直接由哪個異常引起的。

try:     print(1 / 0) except Exception as exc:     raise RuntimeError("Something bad happened") from exc

輸出如下

Traceback (most recent call last):   File "demo.py", line 2, in <module>     print(1 / 0) ZeroDivisionError: division by zero  The above exception was the direct cause of the following exception:  Traceback (most recent call last):   File "demo.py", line 4, in <module>     raise RuntimeError("Something bad happened") from exc RuntimeError: Something bad happened

當(dāng)然,你也可以通過with_traceback()方法為異常設(shè)置上下文__context__屬性,這也能在traceback更好的顯示異常信息。

try:     print(1 / 0) except Exception as exc:     raise RuntimeError("bad thing").with_traceback(exc)

最后,如果我想徹底關(guān)閉這個自動關(guān)聯(lián)異常上下文的機制?有什么辦法呢?

可以使用 raise...from None,從下面的例子上看,已經(jīng)沒有了原始異常

$ cat demo.py try:     print(1 / 0) except Exception as exc:     raise RuntimeError("Something bad happened") from None $ $ python demo.py Traceback (most recent call last):   File "demo.py", line 4, in <module>     raise RuntimeError("Something bad happened") from None RuntimeError: Something bad happened (PythonCodingTime)

關(guān)于“python如何關(guān)閉異常自動關(guān)聯(lián)上下文”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI