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 vstinner
Recipients vstinner
Date 2021-02-19.13:34:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1613741669.0.0.272200155641.issue43270@roundup.psfhosted.org>
In-reply-to
Content
_PyErr_Occurred() is defined as:

static inline PyObject* _PyErr_Occurred(PyThreadState *tstate)
{
    assert(tstate != NULL);
    return tstate->curexc_type;
}
History
Date User Action Args
2021-02-19 13:34:29vstinnersetrecipients: + vstinner
2021-02-19 13:34:29vstinnersetmessageid: <1613741669.0.0.272200155641.issue43270@roundup.psfhosted.org>
2021-02-19 13:34:28vstinnerlinkissue43270 messages
2021-02-19 13:34:28vstinnercreate