We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0fa0a4 commit a6cef14Copy full SHA for a6cef14
pydumpling/pydumpling.py
@@ -72,7 +72,7 @@ def gen_tb_from_frame(f):
72
f = f.f_back
73
if f is None:
74
return tb
75
- while f and "python" not in f.f_code.co_filename.lower():
+ while f:
76
tb = FakeTraceback()
77
tb.tb_frame = FakeFrame(f)
78
tb.tb_lasti = f.f_lasti
0 commit comments