用法:
format(limit=None, most_recent_first=False)
将回溯格式化为行列表。使用
linecache
模块从源代码中检索行。如果设置了limit
,如果limit
为正,则格式化limit
最近的帧。否则,格式化abs(limit)
最旧的帧。如果most_recent_first
是True
,则格式化帧的顺序会颠倒,首先返回最近的帧而不是最后一个。类似于
traceback.format_tb()
函数,除了format()
不包含换行符。例子:
print("Traceback (most recent call first):") for line in traceback: print(line)
输出:
Traceback (most recent call first): File "test.py", line 9 obj = Object() File "test.py", line 12 tb = tracemalloc.get_object_traceback(f())
相关用法
- Python trunc()用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python torchaudio.transforms.Fade用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.summary.scalar用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代码示例
- Python tf.raw_ops.TPUReplicatedInput用法及代码示例
- Python tf.raw_ops.Bitcast用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
- Python Pandas tseries.offsets.CustomBusinessHour.onOffset用法及代码示例
- Python torch.special.gammaincc用法及代码示例
- Python typing.get_type_hints用法及代码示例
- Python tf.compat.v1.Variable.eval用法及代码示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代码示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代码示例
- Python tf.math.special.fresnel_cos用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 tracemalloc.Traceback.format。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。