]> granicus.if.org Git - python/commitdiff
Fix for issue #7072
authorRonald Oussoren <ronaldoussoren@mac.com>
Sun, 18 Apr 2010 13:47:49 +0000 (13:47 +0000)
committerRonald Oussoren <ronaldoussoren@mac.com>
Sun, 18 Apr 2010 13:47:49 +0000 (13:47 +0000)
Include/pyport.h
Lib/test/test_locale.py
Misc/NEWS

index a6ddbeecfce2f5d5cb378b843f6c427a3c03adb9..e02a5fdcbc538a9324f39342349577ba962017e6 100644 (file)
@@ -666,6 +666,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
@@ -683,7 +693,6 @@ extern int fdatasync(int);
 #undef toupper
 #define toupper(c) towupper(btowc(c))
 #endif
-#endif
 
 
 /* Declarations for symbol visibility.
index 451040977ab674b8862e4723375b75977488e0e2..7f0f61d322b71b0d9f8efc5b76168df08659953f 100644 (file)
@@ -10,7 +10,13 @@ enUS_locale = None
 def get_enUS_locale():
     global enUS_locale
     if sys.platform == 'darwin':
-        raise unittest.SkipTest("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 unittest.SkipTest("Locale support on MacOSX is minimal")
     if sys.platform.startswith("win"):
         tlocs = ("En", "English")
     else:
index ca953c88368a8ee85a0650441a0c45b8ba83b98f..edf2ab008d2904b4a6a034354469eee4e0235d11 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,8 @@ Core and Builtins
 - Issue #8417: Raise an OverflowError when an integer larger than sys.maxsize is
   passed to bytearray.
 
+- Issue #7072: isspace(0xa0) is true on Mac OS X
+
 Library
 -------