用法:
with_traceback(tb)
該方法設置
tb
作為異常的新回溯並返回異常對象。它在異常鏈接函數之前更常用 PEP 3134變得可用。以下示例顯示了我們如何轉換SomeException
成一個實例OtherException
同時保留回溯。一旦被提升,當前幀被推送到OtherException
, 就像原始的回溯一樣SomeException
我們是否允許它傳播給調用者。try: ... except SomeException: tb = sys.exc_info()[2] raise OtherException(...).with_traceback(tb)
相關用法
- Python PIL BoxBlur()用法及代碼示例
- Python Bytes轉Int用法及代碼示例
- Python Binary轉Hexadecimal用法及代碼示例
- Python Bytes轉String用法及代碼示例
- Python torch.distributed.rpc.rpc_async用法及代碼示例
- Python torch.nn.InstanceNorm3d用法及代碼示例
- Python sklearn.cluster.MiniBatchKMeans用法及代碼示例
- Python pandas.arrays.IntervalArray.is_empty用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
- Python numpy.less()用法及代碼示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代碼示例
- Python Sympy Permutation.list()用法及代碼示例
- Python dask.dataframe.Series.apply用法及代碼示例
- Python scipy.ndimage.binary_opening用法及代碼示例
- Python pyspark.pandas.Series.dropna用法及代碼示例
- Python torchaudio.transforms.Fade用法及代碼示例
- Python dask.dataframe.to_records用法及代碼示例
- Python pyspark.pandas.groupby.SeriesGroupBy.unique用法及代碼示例
- Python distributed.protocol.serialize.register_generic用法及代碼示例
- Python numpy.polynomial.hermite.hermmul用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 BaseException.with_traceback。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。