From c695e8f6ba391789a8d2e308d47ddc664c071bf6 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Mon, 13 Jan 2003 19:29:38 +0000 Subject: [PATCH] supports_unicode_filenames should not have been backported, test___all__ now passed --- Lib/macpath.py | 2 +- Lib/ntpath.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.3