tabify :(

This commit is contained in:
Benjamin Peterson 2009-05-05 23:00:48 +00:00
parent 8dc74f4602
commit c6c1f96420
1 changed files with 5 additions and 5 deletions

View 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;
}