diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-05 23:00:48 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-05 23:00:48 (GMT) |
commit | c6c1f96420f7c02a0d4642c5f5b3a282b7d29f40 (patch) | |
tree | 27bfb8090001febb21c53c4b587833f63bc883af /Modules | |
parent | 8dc74f4602769f1ebfeffd33eba37361563e3cca (diff) | |
download | cpython-c6c1f96420f7c02a0d4642c5f5b3a282b7d29f40.zip cpython-c6c1f96420f7c02a0d4642c5f5b3a282b7d29f40.tar.gz cpython-c6c1f96420f7c02a0d4642c5f5b3a282b7d29f40.tar.bz2 |
tabify :(
Diffstat (limited to 'Modules')
-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 19bb1a6..0cccca3 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; } |