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 m_python
Recipients amaury.forgeotdarc, benjamin.peterson, flex.plexico, lemburg, m_python, pitrou, python-dev
Date 2015-04-18.12:06:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1429358810.98.0.614226374782.issue17703@psf.upfronthosting.co.za>
In-reply-to
Content
Guillaume already mentioned this, its still causing a Fatal Error. To fix this PyThreadState_GET() in Py_TRASHCAN_SAFE_BEGIN must be replaced with _PyThreadState_Current

#define Py_TRASHCAN_SAFE_BEGIN(op) \
    do { \
        PyThreadState *_tstate = _PyThreadState_Current; \
History
Date User Action Args
2015-04-18 12:06:51m_pythonsetrecipients: + m_python, lemburg, amaury.forgeotdarc, pitrou, benjamin.peterson, python-dev, flex.plexico
2015-04-18 12:06:50m_pythonsetmessageid: <1429358810.98.0.614226374782.issue17703@psf.upfronthosting.co.za>
2015-04-18 12:06:50m_pythonlinkissue17703 messages
2015-04-18 12:06:50m_pythoncreate