Skip to content

Commit 263a521

Browse files
committed
+1
1 parent 657050e commit 263a521

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Modules/_testcapimodule.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3375,8 +3375,9 @@ _testcapi_exec(PyObject *m)
33753375
return -1;
33763376
}
33773377

3378-
if (PyType_Ready(&OldComplexLikeType) < 0)
3379-
return NULL;
3378+
if (PyType_Ready(&OldComplexLikeType) < 0) {
3379+
return -1;
3380+
}
33803381
Py_INCREF(&OldComplexLikeType);
33813382
PyModule_AddObject(m, "old_complex_like", (PyObject *)&OldComplexLikeType);
33823383
PyObject *managed_dict_type = create_managed_dict_type();

0 commit comments

Comments
 (0)