From: Victor Stinner Date: Mon, 13 Sep 2010 19:41:36 +0000 (+0000) Subject: Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X X-Git-Tag: v3.2a3~283 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ccb706cf0ab1e8feb9f0b8e29b4e14767f364dcf;p=thirdparty%2FPython%2Fcpython.git Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X (macpath module). --- diff --git a/Lib/macpath.py b/Lib/macpath.py index 4ab7c09793c1..1615d9122a12 100644 --- a/Lib/macpath.py +++ b/Lib/macpath.py @@ -202,4 +202,4 @@ def realpath(path): pass return path -supports_unicode_filenames = False +supports_unicode_filenames = True diff --git a/Misc/NEWS b/Misc/NEWS index ae2ca336a5c2..0357e02bd68a 100644 --- 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.