summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-10-14 22:00:06 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-10-14 22:00:06 (GMT)
commit38e46fc628f023750e90f727c918ab5fedc37b33 (patch)
tree1bed4433c55a63958f2ef3f3b1f52f3ccec9807d /Include
parenta6474664d07504494c33e999bf0a00fe7a0c8d5f (diff)
downloadcpython-38e46fc628f023750e90f727c918ab5fedc37b33.zip
cpython-38e46fc628f023750e90f727c918ab5fedc37b33.tar.gz
cpython-38e46fc628f023750e90f727c918ab5fedc37b33.tar.bz2
Merged revisions 66891 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66891 | amaury.forgeotdarc | 2008-10-14 23:47:22 +0200 (mar., 14 oct. 2008) | 5 lines #4122: On Windows, Py_UNICODE_ISSPACE cannot be used in an extension module: compilation fails with "undefined reference to _Py_ascii_whitespace" Will backport to 2.6. ........
Diffstat (limited to 'Include')
-rw-r--r--Include/unicodeobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index 057f770..ee9fec1 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -354,7 +354,7 @@ typedef PY_UNICODE_TYPE Py_UNICODE;
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))