Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8d726ee

Browse files
committed
Cosmetic spacing fix.
1 parent 70b3a1a commit 8d726ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/typeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3954,7 +3954,7 @@ add_tp_new_wrapper(PyTypeObject *type)
39543954
func = PyCFunction_New(tp_new_methoddef, (PyObject *)type);
39553955
if (func == NULL)
39563956
return -1;
3957-
if(PyDict_SetItemString(type->tp_dict, "__new__", func)) {
3957+
if (PyDict_SetItemString(type->tp_dict, "__new__", func)) {
39583958
Py_DECREF(func);
39593959
return -1;
39603960
}

0 commit comments

Comments
 (0)