Merge 3.4

This commit is contained in:
Victor Stinner 2014-10-09 22:16:15 +02:00
commit aad627f2f9
1 changed files with 1 additions and 1 deletions

View File

@ -2715,7 +2715,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;