diff options
author | Guido van Rossum <guido@python.org> | 1999-01-29 18:05:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-29 18:05:18 (GMT) |
commit | e294cf620aa0dc6e51afa2e54d213ae6526ec5bc (patch) | |
tree | b875491fcdf656bc8d3fb021dec8ef3ebbef3b94 /Lib/posixpath.py | |
parent | 1804dc3c071cca9c420b41ee8feee3bb74dbfc89 (diff) | |
download | cpython-e294cf620aa0dc6e51afa2e54d213ae6526ec5bc.zip cpython-e294cf620aa0dc6e51afa2e54d213ae6526ec5bc.tar.gz cpython-e294cf620aa0dc6e51afa2e54d213ae6526ec5bc.tar.bz2 |
Add abspath()
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r-- | Lib/posixpath.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py index fb3b6a6..36edc80 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -367,3 +367,10 @@ def normpath(path): if not comps and not slashes: comps.append('.') return slashes + string.joinfields(comps, '/') + + +# Return an absolute path. +def abspath(path): + if not isabs(path): + path = join(os.getcwd(), path) + return normpath(path) |