Index: Include/unicodeobject.h =================================================================== --- Include/unicodeobject.h (révision 66888) +++ Include/unicodeobject.h (copie de travail) @@ -373,7 +373,7 @@ in most situations is solely ASCII whitespace, we optimize for the common case by using a quick look-up table with an inlined check. */ -extern const unsigned char _Py_ascii_whitespace[]; +PyAPI_DATA(const unsigned char) _Py_ascii_whitespace[]; #define Py_UNICODE_ISSPACE(ch) \ ((ch) < 128U ? _Py_ascii_whitespace[(ch)] : _PyUnicode_IsWhitespace(ch))