Message241412
| 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; \ |
|