summaryrefslogtreecommitdiffstats
path: root/Lib/ntpath.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-09-17 15:16:09 (GMT)
committerGuido van Rossum <guido@python.org>2001-09-17 15:16:09 (GMT)
commit83eeef4b067b7182778581c9fdfb104492647bd4 (patch)
treec2edf75165c4ae1d928954315ee4fb83545fa9f7 /Lib/ntpath.py
parent3065c94f373ed32922374a04923f21d41ca0a726 (diff)
downloadcpython-83eeef4b067b7182778581c9fdfb104492647bd4.zip
cpython-83eeef4b067b7182778581c9fdfb104492647bd4.tar.gz
cpython-83eeef4b067b7182778581c9fdfb104492647bd4.tar.bz2
SF patch #461781 by Chris Lawrence: os.path.realpath - Resolve symlinks:
Once upon a time, I put together a little function that tries to find the canonical filename for a given pathname on POSIX. I've finally gotten around to turning it into a proper patch with documentation. On non-POSIX, I made it an alias for 'abspath', as that's the behavior on POSIX when no symlinks are encountered in the path. Example: >>> os.path.realpath('/usr/bin/X11/X') '/usr/X11R6/bin/X'
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r--Lib/ntpath.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py
index d55cc7c..a1baf83 100644
--- a/Lib/ntpath.py
+++ b/Lib/ntpath.py
@@ -451,3 +451,6 @@ def abspath(path):
else:
path = os.getcwd()
return normpath(path)
+
+# realpath is a no-op on systems without islink support
+realpath = abspath