diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-09-13 19:41:36 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-09-13 19:41:36 (GMT) |
commit | ccb706cf0ab1e8feb9f0b8e29b4e14767f364dcf (patch) | |
tree | c55d86c4ca2e6dd1c158798185c466c5ae51006f /Lib/macpath.py | |
parent | d8642c32744f0d60815fd32a94ab410166eaa7c1 (diff) | |
download | cpython-ccb706cf0ab1e8feb9f0b8e29b4e14767f364dcf.zip cpython-ccb706cf0ab1e8feb9f0b8e29b4e14767f364dcf.tar.gz cpython-ccb706cf0ab1e8feb9f0b8e29b4e14767f364dcf.tar.bz2 |
Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X
(macpath module).
Diffstat (limited to 'Lib/macpath.py')
-rw-r--r-- | Lib/macpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/macpath.py b/Lib/macpath.py index 4ab7c09..1615d91 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 |