]> granicus.if.org Git - python/commitdiff
Cosmetic spacing fix.
authorRaymond Hettinger <python@rcn.com>
Fri, 25 Jun 2004 22:24:35 +0000 (22:24 +0000)
committerRaymond Hettinger <python@rcn.com>
Fri, 25 Jun 2004 22:24:35 +0000 (22:24 +0000)
Objects/typeobject.c

index 115e1e66b58eaeb679cbf05938846b603ce0358f..1a052c78c145dfd55c4772ab1e6dd260f5ef0d8c 100644 (file)
@@ -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;
        }