From: Benjamin Peterson Date: Tue, 5 May 2009 23:00:48 +0000 (+0000) Subject: tabify :( X-Git-Tag: v2.7a1~1269 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c6c1f96420f7c02a0d4642c5f5b3a282b7d29f40;p=python tabify :( --- diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 19bb1a6b65..0cccca3c2f 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -227,10 +227,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); @@ -276,7 +276,7 @@ test_lazy_hash_inheritance(PyObject* self) return NULL; } - Py_DECREF(obj); + Py_DECREF(obj); Py_RETURN_NONE; }