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 alex.henrie
Recipients alex.henrie
Date 2020-01-08.18:22:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1578507749.56.0.495941888024.issue39262@roundup.psfhosted.org>
In-reply-to
Content
The function _sharedexception_bind currently has the following bit of code in two places:

    if (PyErr_ExceptionMatches(PyExc_MemoryError)) {
        failure = "out of memory copying exception type name";
    }
    failure = "unable to encode and copy exception type name";

The "out of memory" message will never appear because it is immediately overwritten with a more generic message.
History
Date User Action Args
2020-01-08 18:22:29alex.henriesetrecipients: + alex.henrie
2020-01-08 18:22:29alex.henriesetmessageid: <1578507749.56.0.495941888024.issue39262@roundup.psfhosted.org>
2020-01-08 18:22:29alex.henrielinkissue39262 messages
2020-01-08 18:22:29alex.henriecreate