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 eric.araujo
Recipients brian.curtin, eric.araujo, pitrou, python-dev
Date 2012-04-18.22:05:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334786728.63.0.451487708884.issue14600@psf.upfronthosting.co.za>
In-reply-to
Content
As was pointed on python-dev for the first commit:

    args = PyTuple_New(1);
    if (args == NULL)
        return NULL;

    kwargs = PyDict_New();
    if (args == NULL)
        return NULL;

It looks like the second block has a copy-paste typo and should check kwargs, not args.
History
Date User Action Args
2012-04-18 22:05:28eric.araujosetrecipients: + eric.araujo, pitrou, brian.curtin, python-dev
2012-04-18 22:05:28eric.araujosetmessageid: <1334786728.63.0.451487708884.issue14600@psf.upfronthosting.co.za>
2012-04-18 22:05:28eric.araujolinkissue14600 messages
2012-04-18 22:05:28eric.araujocreate