diff options
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r-- | Lib/ntpath.py | 3 |
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 |