Message238880
Minimal reproducer:
>>> try:
... 1/0
... except:
... int('spam')
...
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
ZeroDivisionError: division by zero
During handling of the above exception, another exception occurred:
ValueError: invalid literal for int() with base 10: 'spam'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<stdin>", line 4, in <module>
SystemError: <class 'ValueError'> returned a result with an error set |
|
Date |
User |
Action |
Args |
2015-03-22 06:55:20 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, pitrou, vstinner, python-dev, berker.peksag, Tim.Graham |
2015-03-22 06:55:20 | serhiy.storchaka | set | messageid: <1427007320.19.0.594449547503.issue23571@psf.upfronthosting.co.za> |
2015-03-22 06:55:20 | serhiy.storchaka | link | issue23571 messages |
2015-03-22 06:55:20 | serhiy.storchaka | create | |
|