一尘不染

python跟踪分段错误

python

我正在从python开发C扩展,并且获得了一些段错误(在开发过程中不可避免…)。

我正在寻找一种显示段错误发生在哪一行代码的方法(一个想法就像跟踪每一行代码),我该怎么做?


阅读 108

收藏
2020-12-20

共1个答案

一尘不染

这是一种输出代码运行的Python每行的文件名和行号的方法:

import sys

def trace(frame, event, arg):
    print("%s, %s:%d" % (event, frame.f_code.co_filename, frame.f_lineno))
    return trace

def test():
    print("Line 8")
    print("Line 9")

sys.settrace(trace)
test()

输出:

call, test.py:7
line, test.py:8
Line 8
line, test.py:9
Line 9
return, test.py:9

(当然,您可能希望将跟踪输出写入文件。)

2020-12-20