summaryrefslogtreecommitdiffstats
path: root/Lib/macpath.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-01-03 18:01:57 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-01-03 18:01:57 (GMT)
commit61cdac6d3d00b4a1b34c64b2fae0e1be10b5fdb4 (patch)
tree15425e731b90df1018ad164bff00cb91b9552e06 /Lib/macpath.py
parent5a22453d332e61cb2dd743712354defe6a37bdf1 (diff)
downloadcpython-61cdac6d3d00b4a1b34c64b2fae0e1be10b5fdb4.zip
cpython-61cdac6d3d00b4a1b34c64b2fae0e1be10b5fdb4.tar.gz
cpython-61cdac6d3d00b4a1b34c64b2fae0e1be10b5fdb4.tar.bz2
Fix SF #659228, 'realpath' function missing from os.path
Also added realpath = abspath for os2emx, similar to windows/mac which also don't really implement realpath. Backport candidate, I think?
Diffstat (limited to 'Lib/macpath.py')
-rw-r--r--Lib/macpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/macpath.py b/Lib/macpath.py
index ba9d40b..e3145da 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","getctime", "islink","exists","isdir","isfile",
"walk","expanduser","expandvars","normpath","abspath",
- "supports_unicode_filenames"]
+ "realpath","supports_unicode_filenames"]
# Normalize the case of a pathname. Dummy in Posix, but <s>.lower() here.