diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-05 23:14:15 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-05 23:14:15 (GMT) |
commit | b43d32552d49b35d1d61ade1d663d8e62cfd8cd7 (patch) | |
tree | 9e2d686736cd407a394e6df2013d5ab6e38d70cb | |
parent | f05f820bf954b9a93b50ad12f0483116bd14f096 (diff) | |
download | cpython-b43d32552d49b35d1d61ade1d663d8e62cfd8cd7.zip cpython-b43d32552d49b35d1d61ade1d663d8e62cfd8cd7.tar.gz cpython-b43d32552d49b35d1d61ade1d663d8e62cfd8cd7.tar.bz2 |
Merged revisions 72367 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72367 | benjamin.peterson | 2009-05-05 18:00:48 -0500 (Tue, 05 May 2009) | 1 line
tabify :(
........
-rw-r--r-- | Modules/_testcapimodule.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index f3899f5..b1a7093 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -228,10 +228,10 @@ test_lazy_hash_inheritance(PyObject* self) type = &_HashInheritanceTester_Type; - if (type->tp_dict != NULL) - /* The type has already been initialized. This probably means -R - is being used. */ - Py_RETURN_NONE; + if (type->tp_dict != NULL) + /* The type has already been initialized. This probably means + -R is being used. */ + Py_RETURN_NONE; obj = PyObject_New(PyObject, type); @@ -277,7 +277,7 @@ test_lazy_hash_inheritance(PyObject* self) return NULL; } - Py_DECREF(obj); + Py_DECREF(obj); Py_RETURN_NONE; } |