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-10-13.15:24:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1634138659.63.0.843474742934.issue45434@roundup.psfhosted.org>
In-reply-to
Content
PyRun_InteractiveOneObjectEx() returns a single error code of errcode.h: E_EOF (11):

    if (mod == NULL) {
        _PyArena_Free(arena);
        if (errcode == E_EOF) {
            PyErr_Clear();
            return E_EOF;
        }
        return -1;
    }
History
Date User Action Args
2021-10-13 15:24:19vstinnersetrecipients: + vstinner
2021-10-13 15:24:19vstinnersetmessageid: <1634138659.63.0.843474742934.issue45434@roundup.psfhosted.org>
2021-10-13 15:24:19vstinnerlinkissue45434 messages
2021-10-13 15:24:19vstinnercreate