mirror of https://github.com/python/cpython
remove surplus and wrong Py_DECREF() introduced in 33891989c9cf
This commit is contained in:
commit
dd6f3899f7
|
@ -121,7 +121,6 @@ test_dict_inner(int count)
|
||||||
for (i = 0; i < count; i++) {
|
for (i = 0; i < count; i++) {
|
||||||
v = PyLong_FromLong(i);
|
v = PyLong_FromLong(i);
|
||||||
if (v == NULL) {
|
if (v == NULL) {
|
||||||
Py_DECREF(v);
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (PyDict_SetItem(dict, v, v) < 0) {
|
if (PyDict_SetItem(dict, v, v) < 0) {
|
||||||
|
|
Loading…
Reference in New Issue