printstack
Description
printstack
is a Python package that adds stack trace links to the builtin print function, so that editors such as PyCharm can link to the source of the print
call.
Installation
pip install printstack
Usage
Simply import printstack
to enhance the print
function:
import printstack
print("Hello world")
# Hello world File "/dev/printstack/examples/example.py", line 3, in