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 ztane
Recipients Romuald, xiang.zhang, ztane
Date 2016-07-18.09:06:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468832784.4.0.775295895554.issue27558@psf.upfronthosting.co.za>
In-reply-to
Content
OTOH, if you put sys.exc_info() in place of raise there, it correctly (None, None, None) there, because it does (sysmodule.c:sys_exc_info)

        tstate->exc_type != NULL ? tstate->exc_type : Py_None,

Easiest fix would be to make do_raise test for both NULL and None, but I'd really consider fixing the new thread initialization if possible.
History
Date User Action Args
2016-07-18 09:06:24ztanesetrecipients: + ztane, Romuald, xiang.zhang
2016-07-18 09:06:24ztanesetmessageid: <1468832784.4.0.775295895554.issue27558@psf.upfronthosting.co.za>
2016-07-18 09:06:24ztanelinkissue27558 messages
2016-07-18 09:06:24ztanecreate