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 xdegaye
Recipients xdegaye
Date 2014-02-03.13:07:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391432829.26.0.791023513998.issue20500@psf.upfronthosting.co.za>
In-reply-to
Content
The following code crashes python with:

python: Objects/object.c:512: PyObject_Str: Assertion `!PyErr_Occurred()' failed.

on the tip of the default branch, but not on python 3.3.3.


import sys

error = None
try:
    raise ValueError('some text')
except ValueError as err:
    error = err

if error:
    sys.exit(error)
History
Date User Action Args
2014-02-03 13:07:09xdegayesetrecipients: + xdegaye
2014-02-03 13:07:09xdegayesetmessageid: <1391432829.26.0.791023513998.issue20500@psf.upfronthosting.co.za>
2014-02-03 13:07:09xdegayelinkissue20500 messages
2014-02-03 13:07:09xdegayecreate