Qix- / better-exceptions

Pretty and useful exceptions in Python, automatically.
MIT License
4.59k stars 203 forks source link

Code difference #98

Open JamCh01 opened 5 years ago

JamCh01 commented 5 years ago

Hello, I used your project in my own code. I download it by pypi, but I found some differences with your project just like: code in your project https://github.com/Qix-/better-exceptions/blob/master/better_exceptions/__init__.py#L52

def excepthook(exc, value, tb):
    formatted = u''.join(format_exception(exc, value, tb))
    write_stream(formatted, STREAM)

code in pypi

def excepthook(exc, value, tb):
    formatted = format_exception(exc, value, tb)
    write_stream(formatted, STREAM)

MD5 (better_exceptions-0.2.2.tar.gz) = 94bd5de2cf77e5b4189bd5e74637bd8c It seems that you didn't update in pypi after you changed the code. this commit: https://github.com/Qix-/better-exceptions/commit/f10e1fb1540d5241e658a632f9eae6f52af15084#diff-6093ef9883a0cd5b3837559bac19babd