]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 80178 via svnmerge from
authorRonald Oussoren <ronaldoussoren@mac.com>
Sun, 18 Apr 2010 14:34:22 +0000 (14:34 +0000)
committerRonald Oussoren <ronaldoussoren@mac.com>
Sun, 18 Apr 2010 14:34:22 +0000 (14:34 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80178 | ronald.oussoren | 2010-04-18 15:47:49 +0200 (Sun, 18 Apr 2010) | 2 lines

  Fix for issue #7072
........

Include/pyport.h
Lib/test/test_locale.py
Misc/NEWS

index 54411f25972447e1151206c6136e19155b1700b0..64bbb0362d1d871da1cb80c85751e3d985175514 100644 (file)
@@ -512,6 +512,16 @@ extern int fdatasync(int);
 #ifdef __FreeBSD__
 #include <osreldate.h>
 #if __FreeBSD_version > 500039
+# define _PY_PORT_CTYPE_UTF8_ISSUE
+#endif
+#endif
+
+
+#if defined(__APPLE__)
+# define _PY_PORT_CTYPE_UTF8_ISSUE
+#endif
+
+#ifdef _PY_PORT_CTYPE_UTF8_ISSUE
 #include <ctype.h>
 #include <wctype.h>
 #undef isalnum
@@ -529,7 +539,6 @@ extern int fdatasync(int);
 #undef toupper
 #define toupper(c) towupper(btowc(c))
 #endif
-#endif
 
 
 /* Declarations for symbol visibility.
index 2612c79fbbc24ccf58e9dc239835b6f123faff25..c05776790078b914d44d775651e16e9d38229edd 100644 (file)
@@ -10,7 +10,13 @@ enUS_locale = None
 def get_enUS_locale():
     global enUS_locale
     if sys.platform == 'darwin':
-        raise TestSkipped("Locale support on MacOSX is minimal")
+        import os
+        tlocs = ("en_US.UTF-8", "en_US.ISO8859-1", "en_US")
+        if int(os.uname()[2].split('.')[0]) < 10:
+            # The locale test work fine on OSX 10.6, I (ronaldoussoren)
+            # haven't had time yet to verify if tests work on OSX 10.5
+            # (10.4 is known to be bad)
+            raise SkipTest("Locale support on MacOSX is minimal")
     if sys.platform.startswith("win"):
         tlocs = ("En", "English")
     else:
index 915e293b3dbeb4aa7502e4423321bd3f843febd5..95d8be32e3a1da00c002934c5ebbae229b69ae4f 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,8 @@ Core and Builtins
 - Issue #7820: The parser tokenizer restores all bytes in the right if
   the BOM check fails.
 
+- Issue #7072: isspace(0xa0) is true on Mac OS X
+
 Library
 -------