From c0b24734e050fbddf6627be3f2dfb9860e8e5aeb Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 26 Dec 2005 22:53:56 +0000 Subject: Bug #649974: make docstrings for url2pathname consistent --- Lib/macurl2path.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Lib/macurl2path.py') diff --git a/Lib/macurl2path.py b/Lib/macurl2path.py index ed23883cfd..4c5ae64572 100644 --- a/Lib/macurl2path.py +++ b/Lib/macurl2path.py @@ -8,7 +8,8 @@ import os __all__ = ["url2pathname","pathname2url"] def url2pathname(pathname): - "Convert /-delimited pathname to mac pathname" + """OS-specific conversion from a relative URL of the 'file' scheme + to a file system path; not recommended for general use.""" # # XXXX The .. handling should be fixed... # @@ -49,7 +50,8 @@ def url2pathname(pathname): return urllib.unquote(rv) def pathname2url(pathname): - "convert mac pathname to /-delimited pathname" + """OS-specific conversion from a file system path to a relative URL + of the 'file' scheme; not recommended for general use.""" if '/' in pathname: raise RuntimeError, "Cannot convert pathname containing slashes" components = pathname.split(':') -- cgit v1.2.1