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 amaury.forgeotdarc
Recipients Padowan, amaury.forgeotdarc, christian.heimes, python-dev
Date 2013-07-11.10:14:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1373537667.03.0.237555037181.issue18426@psf.upfronthosting.co.za>
In-reply-to
Content
I was thinking of a message similar to the one above.
The eventual exception set by PyModule_GetDef(m) is less explicit.

if (def == NULL) {
    PyErr_Format(PyExc_SystemError,
        "initialization of %s did not return an extension module",
        shortname);
    goto error;
}
History
Date User Action Args
2013-07-11 10:14:27amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, christian.heimes, python-dev, Padowan
2013-07-11 10:14:27amaury.forgeotdarcsetmessageid: <1373537667.03.0.237555037181.issue18426@psf.upfronthosting.co.za>
2013-07-11 10:14:27amaury.forgeotdarclinkissue18426 messages
2013-07-11 10:14:26amaury.forgeotdarccreate