]> granicus.if.org Git - python/commitdiff
#8133: Use appropriate Unicode decomposition on MacOS X platform.
authorFlorent Xicluna <florent.xicluna@gmail.com>
Sat, 20 Mar 2010 20:30:53 +0000 (20:30 +0000)
committerFlorent Xicluna <florent.xicluna@gmail.com>
Sat, 20 Mar 2010 20:30:53 +0000 (20:30 +0000)
Lib/test/test_imp.py

index 79b3e0f1a8ba8f97383de39d80d27526ac070fca..b7b986bcf7ed6d2d2a3c38e159d4696a8da977d0 100644 (file)
@@ -104,7 +104,14 @@ class ImportTests(unittest.TestCase):
             'cp1258' : b'\xc0',
             }
 
-        special_char = known_locales.get(fs_encoding)
+        if sys.platform == 'darwin':
+            self.assertEqual(fs_encoding, 'utf-8')
+            # Mac OS X uses the Normal Form D decomposition
+            # http://developer.apple.com/mac/library/qa/qa2001/qa1173.html
+            special_char = b'a\xcc\x88'
+        else:
+            special_char = known_locales.get(fs_encoding)
+
         if not special_char:
             self.skipTest("can't run this test with %s as filesystem encoding"
                           % fs_encoding)