Index: Include/unicodeobject.h =================================================================== --- Include/unicodeobject.h (revision 68196) +++ Include/unicodeobject.h (working copy) @@ -354,8 +354,6 @@ in most situations is solely ASCII whitespace, we optimize for the common case by using a quick look-up table with an inlined check. */ -PyAPI_DATA(const unsigned char) _Py_ascii_whitespace[]; - #define Py_UNICODE_ISSPACE(ch) \ ((ch) < 128U ? _Py_ascii_whitespace[(ch)] : _PyUnicode_IsWhitespace(ch)) @@ -1330,6 +1328,8 @@ */ +PyAPI_DATA(const unsigned char) _Py_ascii_whitespace[]; + PyAPI_FUNC(int) _PyUnicode_IsLowercase( Py_UNICODE ch /* Unicode character */ );