Issue #22588: Fix typo in _testcapi.test_incref_decref_API()

This commit is contained in:
Victor Stinner 2014-10-09 22:15:41 +02:00
parent 484df0075a
commit fc6a90a92e
1 changed files with 1 additions and 1 deletions

View File

@ -2699,7 +2699,7 @@ static PyObject *
test_incref_decref_API(PyObject *ob) test_incref_decref_API(PyObject *ob)
{ {
PyObject *obj = PyLong_FromLong(0); PyObject *obj = PyLong_FromLong(0);
Py_IncRef(ob); Py_IncRef(obj);
Py_DecRef(obj); Py_DecRef(obj);
Py_DecRef(obj); Py_DecRef(obj);
Py_RETURN_NONE; Py_RETURN_NONE;