remove surplus and wrong Py_DECREF() introduced in 33891989c9cf

This commit is contained in:
Christian Heimes 2013-07-26 15:26:26 +02:00
commit dd6f3899f7
1 changed files with 0 additions and 1 deletions

View File

@ -121,7 +121,6 @@ test_dict_inner(int count)
for (i = 0; i < count; i++) {
v = PyLong_FromLong(i);
if (v == NULL) {
Py_DECREF(v);
return -1;
}
if (PyDict_SetItem(dict, v, v) < 0) {