mirror of
https://github.com/python/cpython.git
synced 2025-08-09 03:19:15 +00:00
Merged revisions 84866 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84866 | victor.stinner | 2010-09-18 01:34:26 +0200 (sam., 18 sept. 2010) | 4 lines 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 ........
This commit is contained in:
parent
9c379bbadd
commit
8fc843b38e
2 changed files with 2 additions and 3 deletions
|
@ -394,7 +394,7 @@ def _resolve_link(path):
|
|||
path = normpath(resolved)
|
||||
return path
|
||||
|
||||
supports_unicode_filenames = False
|
||||
supports_unicode_filenames = (sys.platform == 'darwin')
|
||||
|
||||
def relpath(path, start=curdir):
|
||||
"""Return a relative version of a path"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue