From: Raymond Hettinger Date: Fri, 25 Jun 2004 22:24:35 +0000 (+0000) Subject: Cosmetic spacing fix. X-Git-Tag: v2.4a1~130 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8d726eef968177acaae2a6daa7fe8fb5a8026c42;p=thirdparty%2FPython%2Fcpython.git Cosmetic spacing fix. --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 115e1e66b58e..1a052c78c145 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -3954,7 +3954,7 @@ add_tp_new_wrapper(PyTypeObject *type) func = PyCFunction_New(tp_new_methoddef, (PyObject *)type); if (func == NULL) return -1; - if(PyDict_SetItemString(type->tp_dict, "__new__", func)) { + if (PyDict_SetItemString(type->tp_dict, "__new__", func)) { Py_DECREF(func); return -1; }