]> granicus.if.org Git - python/commitdiff
Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X
authorVictor Stinner <victor.stinner@haypocalc.com>
Mon, 13 Sep 2010 19:41:36 +0000 (19:41 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Mon, 13 Sep 2010 19:41:36 +0000 (19:41 +0000)
(macpath module).

Lib/macpath.py
Misc/NEWS

index 4ab7c09793c1129a8bd5054e20a4f5f3967f2926..1615d9122a128f0e7aecdc60b87fa356190bb85f 100644 (file)
@@ -202,4 +202,4 @@ def realpath(path):
             pass
     return path
 
-supports_unicode_filenames = False
+supports_unicode_filenames = True
index ae2ca336a5c2ccc6af8e60a18432709f4b2c1230..0357e02bd68acbd28cf873099ccfffa0ef187ba0 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Core and Builtins
 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.