We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 657050e commit 263a521Copy full SHA for 263a521
1 file changed
Modules/_testcapimodule.c
@@ -3375,8 +3375,9 @@ _testcapi_exec(PyObject *m)
3375
return -1;
3376
}
3377
3378
- if (PyType_Ready(&OldComplexLikeType) < 0)
3379
- return NULL;
+ if (PyType_Ready(&OldComplexLikeType) < 0) {
+ return -1;
3380
+ }
3381
Py_INCREF(&OldComplexLikeType);
3382
PyModule_AddObject(m, "old_complex_like", (PyObject *)&OldComplexLikeType);
3383
PyObject *managed_dict_type = create_managed_dict_type();
0 commit comments