diff options
author | Georg Brandl <georg@python.org> | 2005-12-26 22:53:56 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-12-26 22:53:56 (GMT) |
commit | c0b24734e050fbddf6627be3f2dfb9860e8e5aeb (patch) | |
tree | 3333de3ae2a3420ed259865912c0b644d062244f /Lib/nturl2path.py | |
parent | ddddd2f7e675ccf5d860d8ab8c31822ab71ecf5c (diff) | |
download | cpython-c0b24734e050fbddf6627be3f2dfb9860e8e5aeb.zip cpython-c0b24734e050fbddf6627be3f2dfb9860e8e5aeb.tar.gz cpython-c0b24734e050fbddf6627be3f2dfb9860e8e5aeb.tar.bz2 |
Bug #649974: make docstrings for url2pathname consistent
Diffstat (limited to 'Lib/nturl2path.py')
-rw-r--r-- | Lib/nturl2path.py | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/Lib/nturl2path.py b/Lib/nturl2path.py index 2ced9a9..31064044 100644 --- a/Lib/nturl2path.py +++ b/Lib/nturl2path.py @@ -1,14 +1,12 @@ """Convert a NT pathname to a file URL and vice versa.""" def url2pathname(url): - r"""Convert a URL to a DOS path. - - ///C|/foo/bar/spam.foo - - becomes - - C:\foo\bar\spam.foo - """ + """OS-specific conversion from a relative URL of the 'file' scheme + to a file system path; not recommended for general use.""" + # e.g. + # ///C|/foo/bar/spam.foo + # becomes + # C:\foo\bar\spam.foo import string, urllib # Windows itself uses ":" even in URLs. url = url.replace(':', '|') @@ -35,15 +33,12 @@ def url2pathname(url): return path def pathname2url(p): - r"""Convert a DOS path name to a file url. - - C:\foo\bar\spam.foo - - becomes - - ///C|/foo/bar/spam.foo - """ - + """OS-specific conversion from a file system path to a relative URL + of the 'file' scheme; not recommended for general use.""" + # e.g. + # C:\foo\bar\spam.foo + # becomes + # ///C|/foo/bar/spam.foo import urllib if not ':' in p: # No drive specifier, just convert slashes and quote the name |