]> granicus.if.org Git - python/commitdiff
tabify :(
authorBenjamin Peterson <benjamin@python.org>
Tue, 5 May 2009 23:00:48 +0000 (23:00 +0000)
committerBenjamin Peterson <benjamin@python.org>
Tue, 5 May 2009 23:00:48 +0000 (23:00 +0000)
Modules/_testcapimodule.c

index 19bb1a6b65c6da716ba3a56188aab8f43faa0bad..0cccca3c2fdd52c1c9b8cb9b2b825f7f1b834177 100644 (file)
@@ -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;
 }