diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2014-10-09 22:16:15 +0200 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2014-10-09 22:16:15 +0200 |
| commit | aad627f2f94c426fab6d8341ffd60ca36cc005b7 (patch) | |
| tree | e6cc8525683cf956555f14fa8e1148fc489a995c /Modules/_testcapimodule.c | |
| parent | 67e2e6d600f243c748678c09f741b6f8938af452 (diff) | |
| parent | fc6a90a92e42717268b7e927c158ba341e579106 (diff) | |
| download | cpython-git-aad627f2f94c426fab6d8341ffd60ca36cc005b7.tar.gz | |
Merge 3.4
Diffstat (limited to 'Modules/_testcapimodule.c')
| -rw-r--r-- | Modules/_testcapimodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 643cbde317..245d4f6316 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -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; |
