summaryrefslogtreecommitdiff
path: root/Lib/posixpath.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r--Lib/posixpath.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index 7f907ef519..efe83269df 100644
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -10,6 +10,7 @@ Some of this can actually be useful on non-Posix systems too, e.g.
for manipulation of the pathname component of URLs.
"""
+import sys
import os
import stat
@@ -416,4 +417,7 @@ symbolic links encountered in the path."""
return filename
-supports_unicode_filenames = False
+if sys.platform == "darwin":
+ supports_unicode_filenames = True
+else:
+ supports_unicode_filenames = False