Commit ec2309b0 authored by Christian Heimes's avatar Christian Heimes

remove surplus and wrong Py_DECREF() introduced in 33891989c9cf

parent 3205e74d
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment