cpython: 2c514c382a2a (original) (raw)

--- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -5496,33 +5496,39 @@ PyUnicode_DecodeUTF16Stateful(const char int kind = PyUnicode_KIND(unicode); void *data = PyUnicode_DATA(unicode); while (_q < aligned_end) {

+

+

#if (SIZEOF_LONG == 8)

-#endif

+#endif

#if SIZEOF_LONG == 8

#endif if (maxch > PyUnicode_MAX_CHAR_VALUE(unicode)) { if (unicode_widen(&unicode, maxch) < 0) @@ -5530,11 +5536,11 @@ PyUnicode_DecodeUTF16Stateful(const char kind = PyUnicode_KIND(unicode); data = PyUnicode_DATA(unicode); }

#if SIZEOF_LONG == 8

#endif _q += SIZEOF_LONG; }