Message 106491 - Python tracker
Message106491
| 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:40 | belopolsky | set | recipients: + belopolsky, mark.dickinson |
| 2010-05-25 23:11:40 | belopolsky | set | messageid: <1274829100.7.0.687427924163.issue8817@psf.upfronthosting.co.za> |
| 2010-05-25 23:11:39 | belopolsky | link | issue8817 messages |
| 2010-05-25 23:11:39 | belopolsky | create | |