]> granicus.if.org Git - python/commitdiff
Merged revisions 80182 via svnmerge from
authorRonald Oussoren <ronaldoussoren@mac.com>
Sun, 18 Apr 2010 15:08:43 +0000 (15:08 +0000)
committerRonald Oussoren <ronaldoussoren@mac.com>
Sun, 18 Apr 2010 15:08:43 +0000 (15:08 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r80182 | ronald.oussoren | 2010-04-18 17:02:38 +0200 (Sun, 18 Apr 2010) | 9 lines

  Merged revisions 80178 via svnmerge from
  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 be15fe1b6c3b02779ff963398286cbf6ff6a5295..01b0c3a08b55c324974fa813a939cb6a7979e1b4 100644 (file)
@@ -605,6 +605,16 @@ extern pid_t forkpty(int *, char *, struct termios *, struct winsize *);
 #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
@@ -622,7 +632,6 @@ extern pid_t forkpty(int *, char *, struct termios *, struct winsize *);
 #undef toupper
 #define toupper(c) towupper(btowc(c))
 #endif
-#endif
 
 
 /* Declarations for symbol visibility.
index 8c17f8770c7419991fd1786f990a13cac6a6347b..9439522fc90d0056b8ac8dafd91f27db7105d98b 100644 (file)
@@ -8,7 +8,15 @@ enUS_locale = None
 
 def get_enUS_locale():
     global enUS_locale
-    if sys.platform.startswith("win"):
+    if sys.platform == 'darwin':
+        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")
+    elif sys.platform.startswith("win"):
         tlocs = ("En", "English")
     else:
         tlocs = ("en_US.UTF-8", "en_US.ISO8859-1", "en_US.US-ASCII", "en_US")
index a5cbc87ce5305e7dc3c6f50f55c742065aa2dbe4..45624383d54505bbcc2b35abae7eb573f1a0fe7b 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,8 @@ Core and Builtins
 
 - Issue #1583863: An str subclass can now override the __str__ method
 
+- Issue #7072: isspace(0xa0) is true on Mac OS X
+
 Library
 -------