Thanks to visit codestin.com Credit goes to github.com
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 09ca794 commit 26532f7Copy full SHA for 26532f7
1 file changed
Objects/unicodeobject.c
@@ -14164,7 +14164,8 @@ int _PyUnicode_Init(void)
14164
PyUnicode_2BYTE_KIND, linebreak,
14165
Py_ARRAY_LENGTH(linebreak));
14166
14167
- PyType_Ready(&EncodingMapType);
+ if (PyType_Ready(&EncodingMapType) < 0)
14168
+ Py_FatalError("Can't initialize encoding map type");
14169
14170
if (PyType_Ready(&PyFieldNameIter_Type) < 0)
14171
Py_FatalError("Can't initialize field name iterator type");
0 commit comments