]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
supports_unicode_filenames should not have been backported, test___all__ now passed
authorNeal Norwitz <nnorwitz@gmail.com>
Mon, 13 Jan 2003 19:29:38 +0000 (19:29 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Mon, 13 Jan 2003 19:29:38 +0000 (19:29 +0000)
Lib/macpath.py
Lib/ntpath.py

index bb0a85018cb21680c8206682f798656d731daa4f..88caf82cbf5add491ebe3789eab35a2bb0e2ca6c 100644 (file)
@@ -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 <s>.lower() here.
 
index f4f551011d27a5d6fdfd595988ee83c4e60ef594..364b3bf6ed5f0dfb698ac0947ea36c84b6a84c58 100644 (file)
@@ -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