mirror of
https://github.com/python/cpython.git
synced 2025-08-28 12:45:07 +00:00
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?
This commit is contained in:
parent
5a22453d33
commit
61cdac6d3d
4 changed files with 8 additions and 4 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue