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 Oren Milman
Recipients Oren Milman, eric.snow, ncoghlan, serhiy.storchaka
Date 2017-09-27.10:13:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1506507201.32.0.154975027568.issue31588@psf.upfronthosting.co.za>
In-reply-to
Content
Nick, maybe you tried to reproduce in release?
In debug (where I got the SystemError), you have in the beginning of _PyFrame_New_NoTrack():
#ifdef Py_DEBUG
    if (code == NULL || globals == NULL || !PyDict_Check(globals) ||
        (locals != NULL && !PyMapping_Check(locals))) {
        PyErr_BadInternalCall();
        return NULL;
    }
History
Date User Action Args
2017-09-27 10:13:21Oren Milmansetrecipients: + Oren Milman, ncoghlan, eric.snow, serhiy.storchaka
2017-09-27 10:13:21Oren Milmansetmessageid: <1506507201.32.0.154975027568.issue31588@psf.upfronthosting.co.za>
2017-09-27 10:13:21Oren Milmanlinkissue31588 messages
2017-09-27 10:13:21Oren Milmancreate