[issue4122] undefined reference to _Py_ascii_whitespace

2008-10-14 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: Committed r66891 (trunk) and r66892 (release26-maint). Thanks for the report and the patch! In the meantime, you may use _PyUnicode_IsWhitespace(ch), like the 2.5 version did. -- resolution: -> fixed status: open -> closed _

[issue4122] undefined reference to _Py_ascii_whitespace

2008-10-14 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: This also happens with VS2008. -- assignee: -> amaury.forgeotdarc nosy: +amaury.forgeotdarc ___ Python tracker <[EMAIL PROTECTED]>

[issue4122] undefined reference to _Py_ascii_whitespace

2008-10-14 Thread Ralf Schmitt
Ralf Schmitt <[EMAIL PROTECTED]> added the comment: I hope someone else can test this, as I don't feel like setting up a windows build environment... ___ Python tracker <[EMAIL PROTECTED]>

[issue4122] undefined reference to _Py_ascii_whitespace

2008-10-14 Thread STINNER Victor
STINNER Victor <[EMAIL PROTECTED]> added the comment: You can try this patch for Python. -- keywords: +patch nosy: +haypo Added file: http://bugs.python.org/file11789/export_Py_ascii_whitespace.patch ___ Python tracker <[EMAIL PROTECTED]>

[issue4122] undefined reference to _Py_ascii_whitespace

2008-10-14 Thread Ralf Schmitt
New submission from Ralf Schmitt <[EMAIL PROTECTED]>: unicodeobject.h contains the following code: extern const unsigned char _Py_ascii_whitespace[]; #define Py_UNICODE_ISSPACE(ch) \ ((ch) < 128U ? _Py_ascii_whitespace[(ch)] : _PyUnicode_IsWhitespace(ch)) When linking a module which us