diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-10-14 21:47:22 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-10-14 21:47:22 (GMT) |
commit | 07d539d08bb54628d20978e97eb6e0ba263ac581 (patch) | |
tree | 839d59e562f597ef5dd5903013f1817523dc4599 /Misc | |
parent | 0ecbccad2d032366ffa8a920ac7c159e3772fb27 (diff) | |
download | cpython-07d539d08bb54628d20978e97eb6e0ba263ac581.zip cpython-07d539d08bb54628d20978e97eb6e0ba263ac581.tar.gz cpython-07d539d08bb54628d20978e97eb6e0ba263ac581.tar.bz2 |
#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 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -36,6 +36,12 @@ Build - Issue #3758: Add ``patchcheck`` build target to .PHONY. +C-API +----- + +- Issue #4122: On Windows, fix a compilation error when using the + Py_UNICODE_ISSPACE macro in an extension module. + What's New in Python 2.6 final ============================== |