Commit fc6a90a9 authored by Victor Stinner's avatar Victor Stinner

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

parent 484df007
......@@ -2699,7 +2699,7 @@ static PyObject *
test_incref_decref_API(PyObject *ob)
{
PyObject *obj = PyLong_FromLong(0);
Py_IncRef(ob);
Py_IncRef(obj);
Py_DecRef(obj);
Py_DecRef(obj);
Py_RETURN_NONE;
......
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