Message210123
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) |
|
Date |
User |
Action |
Args |
2014-02-03 13:07:09 | xdegaye | set | recipients:
+ xdegaye |
2014-02-03 13:07:09 | xdegaye | set | messageid: <1391432829.26.0.791023513998.issue20500@psf.upfronthosting.co.za> |
2014-02-03 13:07:09 | xdegaye | link | issue20500 messages |
2014-02-03 13:07:09 | xdegaye | create | |
|