[Python-checkins] r84180 - python/branches/py3k/Lib/test/support.py

victor.stinner python-checkins at python.org
Wed Aug 18 23:06:23 CEST 2010


Author: victor.stinner
Date: Wed Aug 18 23:06:23 2010
New Revision: 84180

Log:
Decompose TESTFN_UNICODE on Mac OS X


Modified:
   python/branches/py3k/Lib/test/support.py

Modified: python/branches/py3k/Lib/test/support.py
==============================================================================
--- python/branches/py3k/Lib/test/support.py	(original)
+++ python/branches/py3k/Lib/test/support.py	Wed Aug 18 23:06:23 2010
@@ -379,6 +379,12 @@
 
 # TESTFN_UNICODE is a non-ascii filename
 TESTFN_UNICODE = TESTFN + "-\xe0\xf2\u0258\u0141\u011f"
+if sys.platform == 'darwin':
+    # In Mac OS X's VFS API file names are, by definition, canonically
+    # decomposed Unicode, encoded using UTF-8. See QA1173:
+    # http://developer.apple.com/mac/library/qa/qa2001/qa1173.html
+    import unicodedata
+    TESTFN_UNICODE = unicodedata.normalize('NFD', TESTFN_UNICODE)
 TESTFN_ENCODING = sys.getfilesystemencoding()
 
 # TESTFN_UNENCODABLE is a filename (str type) that should *not* be able to be


More information about the Python-checkins mailing list