This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients Tim.Graham, berker.peksag, pitrou, python-dev, serhiy.storchaka, vstinner
Date 2015-03-22.06:55:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427007320.19.0.594449547503.issue23571@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2015-03-22 06:55:20serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, vstinner, python-dev, berker.peksag, Tim.Graham
2015-03-22 06:55:20serhiy.storchakasetmessageid: <1427007320.19.0.594449547503.issue23571@psf.upfronthosting.co.za>
2015-03-22 06:55:20serhiy.storchakalinkissue23571 messages
2015-03-22 06:55:20serhiy.storchakacreate