diff options
author | Just van Rossum <just@letterror.com> | 2003-07-17 15:11:49 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2003-07-17 15:11:49 (GMT) |
commit | 2d4e988c35e5da0bf4bd35ca3eb6851e83970764 (patch) | |
tree | 0b95aa040aa9858d666b0170537d60cb17acc99d /Lib | |
parent | 29dfcd108d5f35947a427e37864f355ef858b68f (diff) | |
download | cpython-2d4e988c35e5da0bf4bd35ca3eb6851e83970764.zip cpython-2d4e988c35e5da0bf4bd35ca3eb6851e83970764.tar.gz cpython-2d4e988c35e5da0bf4bd35ca3eb6851e83970764.tar.bz2 |
back out the darwin supports_unicode_filenames patch; it causes deep problems with the tests
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/posixpath.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py index efe8326..58e8eed 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -417,7 +417,4 @@ symbolic links encountered in the path.""" return filename -if sys.platform == "darwin": - supports_unicode_filenames = True -else: - supports_unicode_filenames = False +supports_unicode_filenames = False |