From e797c16f8442bc65229a7fb28f69256ccc2d7372 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 17 Sep 2010 23:34:26 +0000 Subject: [PATCH] Issue #767645: Set os.path.supports_unicode_filenames to True in posixpath Previous commit changed macpath but macpath is not used anymore as os.path --- Lib/posixpath.py | 2 +- Misc/NEWS | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Lib/posixpath.py b/Lib/posixpath.py index e9f4251846c..37da71e615e 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -427,7 +427,7 @@ def _resolve_link(path): path = normpath(resolved) return path -supports_unicode_filenames = False +supports_unicode_filenames = (sys.platform == 'darwin') def relpath(path, start=None): """Return a relative version of a path""" diff --git a/Misc/NEWS b/Misc/NEWS index bfa8bace8cc..f4f8da833f6 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -74,8 +74,7 @@ Library - logging: Enhanced HTTPHandler with secure and credentials initializers. -- Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X - (macpath module). +- Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X. - Issue #9837: The read() method of ZipExtFile objects (as returned by ZipFile.open()) could return more bytes than requested.