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 serhiy.storchaka
Recipients larry, methane, serhiy.storchaka, vstinner
Date 2017-01-27.10:40:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1485513647.11.0.304890002758.issue29300@psf.upfronthosting.co.za>
In-reply-to
Content
static int
cache_struct_converter(PyObject *arg, PyObject **s_object)
{
    if (arg == NULL) {
        Py_DECREF();
        return 1;
    }
    *s_object = cache_struct(arg); // actually inline this
    if (*s_object == NULL)
        return 0;
    return Py_CLEANUP_SUPPORTED;
}
History
Date User Action Args
2017-01-27 10:40:47serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, larry, methane
2017-01-27 10:40:47serhiy.storchakasetmessageid: <1485513647.11.0.304890002758.issue29300@psf.upfronthosting.co.za>
2017-01-27 10:40:47serhiy.storchakalinkissue29300 messages
2017-01-27 10:40:47serhiy.storchakacreate