From: Neal Norwitz Date: Mon, 13 Jan 2003 19:29:38 +0000 (+0000) Subject: supports_unicode_filenames should not have been backported, test___all__ now passed X-Git-Tag: v2.2.3c1~173 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c695e8f6ba391789a8d2e308d47ddc664c071bf6;p=thirdparty%2FPython%2Fcpython.git supports_unicode_filenames should not have been backported, test___all__ now passed --- diff --git a/Lib/macpath.py b/Lib/macpath.py index bb0a85018cb2..88caf82cbf5a 100644 --- a/Lib/macpath.py +++ b/Lib/macpath.py @@ -7,7 +7,7 @@ __all__ = ["normcase","isabs","join","splitdrive","split","splitext", "basename","dirname","commonprefix","getsize","getmtime", "getatime","islink","exists","isdir","isfile", "walk","expanduser","expandvars","normpath","abspath", - "realpath","supports_unicode_filenames"] + "realpath"] # Normalize the case of a pathname. Dummy in Posix, but .lower() here. diff --git a/Lib/ntpath.py b/Lib/ntpath.py index f4f551011d27..364b3bf6ed5f 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -12,7 +12,7 @@ __all__ = ["normcase","isabs","join","splitdrive","split","splitext", "basename","dirname","commonprefix","getsize","getmtime", "getatime","islink","exists","isdir","isfile","ismount", "walk","expanduser","expandvars","normpath","abspath","splitunc", - "realpath","supports_unicode_filenames"] + "realpath"] # Normalize the case of a pathname and map slashes to backslashes. # Other normalizations (such as optimizing '../' away) are not done