[Python-checkins] r84784 - in python/branches/py3k: Lib/macpath.py Misc/NEWS

victor.stinner python-checkins at python.org
Mon Sep 13 21:41:37 CEST 2010


Author: victor.stinner
Date: Mon Sep 13 21:41:36 2010
New Revision: 84784

Log:
Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X
(macpath module).

Modified:
   python/branches/py3k/Lib/macpath.py
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Lib/macpath.py
==============================================================================
--- python/branches/py3k/Lib/macpath.py	(original)
+++ python/branches/py3k/Lib/macpath.py	Mon Sep 13 21:41:36 2010
@@ -202,4 +202,4 @@
             pass
     return path
 
-supports_unicode_filenames = False
+supports_unicode_filenames = True

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Mon Sep 13 21:41:36 2010
@@ -40,6 +40,9 @@
 Library
 -------
 
+- Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X
+  (macpath module).
+
 - Issue #9837: The read() method of ZipExtFile objects (as returned by
   ZipFile.open()) could return more bytes than requested.
 


More information about the Python-checkins mailing list