Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X

(macpath module).
This commit is contained in:
Victor Stinner 2010-09-13 19:41:36 +00:00
parent d8642c3274
commit ccb706cf0a
2 changed files with 4 additions and 1 deletions

View File

@ -202,4 +202,4 @@ def realpath(path):
pass
return path
supports_unicode_filenames = False
supports_unicode_filenames = True

View File

@ -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.