backtrace icon indicating copy to clipboard operation
backtrace copied to clipboard

Makes Python tracebacks human friendly

Results 12 backtrace issues
Sort by recently updated
recently updated
newest added

The issue backtrace requires colorlama==0.3.7 is fixed but not published. My package is dependent on backtrace and it prints the version conflict error when installing. Please consider publishing new version.

I think this resolves #16. Please see the commit messages for 3c86dd6f5001c211fdfa6b7aba2c3f2e7aee253b and 7e58cff1a8584ec783ba92956e329465c27243d8.

Here is my attempt at improved tracebacks: Google Colab standard backtrace | Niceback enabled :-------------------------:|:-------------------------: ![](https://raw.githubusercontent.com/Tronic/niceback/master/docs/without-niceback.png) | ![](https://raw.githubusercontent.com/Tronic/niceback/master/docs/with-niceback.png) https://github.com/Tronic/niceback

pypi tar.gz package is uninstallable, the error is `No such file or directory: 'LICENSE'`. The file is, indeed, missing from the archive. The wheel installs fine though.

Thank you for developing this package. I am glad to have found it. My issue is that I wasn't able to use it, just out of the box. I just...

Thank you so much for this utility it helps me a lot! It appears that there's some problem with parsing. See the original traceback (Figure 1) and the parsed traceback...

I often want to view stdout as well, and it would be nice if backtrace let that be printed as is.

When running `backtrace` without providing it with any input from stdin, backtrace will try to read it but hang because nothing goes through. Instead, it should be first test to...

bug

In python3, running the following will result in backtrace not identifying a traceback: ```python try: raise Exception except Exception: _, __, tb = sys.exc_info() raise Exception(tb) ``` ```bash $ python...

bug

It would be amazing to see local variables in each frame of the traceback. It really helps debugging!

enhancement