Skip to content

Commit 2ebf8a0

Browse files
committed
Fix return value
1 parent 9e3ce44 commit 2ebf8a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/unicodeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ init_global_interned_strings(PyInterpreterState *interp)
344344
assert(_PyUnicode_CheckConsistency(LATIN1(i), 1));
345345
}
346346
#endif
347-
return _PyStatus_ERR;
347+
return _PyStatus_OK();
348348
}
349349

350350
static void clear_global_interned_strings(void)

0 commit comments

Comments
 (0)