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 belopolsky
Recipients belopolsky, mark.dickinson
Date 2010-05-25.23:11:39
SpamBayes Score 0.15810555
Marked as misclassified No
Message-id <1274829100.7.0.687427924163.issue8817@psf.upfronthosting.co.za>
In-reply-to
Content
Looking at

    Py_DECREF(one);
 
    result = PyTuple_New(2);
    if (result == NULL)
        goto error;
..
  error:
    Py_XDECREF(one);


If PyTuple_New fails, wouldn't it result in one being DECREF's twice?
History
Date User Action Args
2010-05-25 23:11:40belopolskysetrecipients: + belopolsky, mark.dickinson
2010-05-25 23:11:40belopolskysetmessageid: <1274829100.7.0.687427924163.issue8817@psf.upfronthosting.co.za>
2010-05-25 23:11:39belopolskylinkissue8817 messages
2010-05-25 23:11:39belopolskycreate