summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-06-25 22:24:35 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-06-25 22:24:35 (GMT)
commit8d726eef968177acaae2a6daa7fe8fb5a8026c42 (patch)
tree5fec5d46c457b73ce4f0439bf1d036482643a3e5 /Objects/typeobject.c
parent70b3a1ab0aa6dacf83d5a6a3db32b9174f8a85d3 (diff)
downloadcpython-8d726eef968177acaae2a6daa7fe8fb5a8026c42.zip
cpython-8d726eef968177acaae2a6daa7fe8fb5a8026c42.tar.gz
cpython-8d726eef968177acaae2a6daa7fe8fb5a8026c42.tar.bz2
Cosmetic spacing fix.
Diffstat (limited to 'Objects/typeobject.c')
-rw-r--r--Objects/typeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 115e1e6..1a052c7 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;
}