Commit 12fcd664 authored by Tom Niget's avatar Tom Niget

Make file references parseable by IDEs

parent 9505672b
......@@ -48,7 +48,7 @@ def exception_hook(exc_type, exc_value, tb):
filename = tb.tb_frame.f_code.co_filename
line_no = tb.tb_lineno
print(cf.red(f"File \"{filename}\", line {line_no}, in {cf.green(name)}"), end="")
print(cf.red(f"File {filename}:{line_no}, in {cf.green(name)}"), end="")
if info := local_vars.get("TB", None):
print(f": {cf.magenta(info)}\x1b[24m")
......@@ -63,8 +63,8 @@ def exception_hook(exc_type, exc_value, tb):
last_node.lineno = 1
print(ast.unparse(last_node))
return
print(f"In file \"{cf.white(last_file)}\", line {last_node.lineno}")
print(f"From {last_node.lineno}:{last_node.col_offset} to {last_node.end_lineno}:{last_node.end_col_offset}")
print(f"In file {cf.white(last_file)}:{last_node.lineno}")
with open(last_file, "r", encoding="utf-8") as f:
code = f.read()
hg = (str(highlight(code, True))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment