Cosmetic spacing fix.
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 @@
 	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;
 	}