py_better_exchook
py_better_exchook copied to clipboard
nice Python exception hook replacement
Results
2
py_better_exchook issues
Sort by
recently updated
recently updated
newest added
E.g. in such code: ```python my_dict["hello"] ``` I would like that it adds `my_dict["hello"]` also to the printed variables. Just like `my_obj.hello` works already.
It would be helpful to also show the values for variables inside of f-strings. For example, I just got this error here: ```python File "...gather.py", line 29, in line: out_file.write(f"{in_lines[index]}\n")...