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 iritkatriel
Recipients Mark.Shannon, brandtbucher, gvanrossum, iritkatriel, scoder, terry.reedy, vstinner
Date 2022-02-01.14:52:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1643727161.74.0.370427136919.issue45711@roundup.psfhosted.org>
In-reply-to
Content
Does unsetting CYTHON_USE_EXC_INFO_STACK still work?



#if CYTHON_USE_EXC_INFO_STACK
// See  https://bugs.python.org/issue25612
#define __Pyx_ExcInfoStruct  _PyErr_StackItem
#else
// Minimal replacement struct for Py<3.7, without the Py3.7 exception state stack.
typedef struct {
    PyObject *exc_type;
    PyObject *exc_value;
    PyObject *exc_traceback;
} __Pyx_ExcInfoStruct;
#endif
History
Date User Action Args
2022-02-01 14:52:41iritkatrielsetrecipients: + iritkatriel, gvanrossum, terry.reedy, scoder, vstinner, Mark.Shannon, brandtbucher
2022-02-01 14:52:41iritkatrielsetmessageid: <1643727161.74.0.370427136919.issue45711@roundup.psfhosted.org>
2022-02-01 14:52:41iritkatriellinkissue45711 messages
2022-02-01 14:52:41iritkatrielcreate