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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d726eef968177acaae2a6daa7fe8fb5a8026c42;p=python Cosmetic spacing fix. --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 115e1e66b5..1a052c78c1 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; }