]> granicus.if.org Git - python/commitdiff
Issue21160: Correct comments in nturl2path. Patch by Jurko Gospodnetić.
authorSerhiy Storchaka <storchaka@gmail.com>
Sat, 24 Oct 2015 14:39:36 +0000 (17:39 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 24 Oct 2015 14:39:36 +0000 (17:39 +0300)
Lib/nturl2path.py

index 10ea27280789f5a6bcfc7a2fb6c94ab6b9df5645..9e6eb0d559d78fe4766ee4ecc5747e14110f5651 100644 (file)
@@ -4,9 +4,11 @@ def url2pathname(url):
     """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
+    #   ///C|/foo/bar/spam.foo
+    # and
+    #   ///C:/foo/bar/spam.foo
+    # become
+    #   C:\foo\bar\spam.foo
     import string, urllib
     # Windows itself uses ":" even in URLs.
     url = url.replace(':', '|')
@@ -39,9 +41,9 @@ def pathname2url(p):
     """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
+    #   C:\foo\bar\spam.foo
     # becomes
-    # ///C|/foo/bar/spam.foo
+    #   ///C:/foo/bar/spam.foo
     import urllib
     if not ':' in p:
         # No drive specifier, just convert slashes and quote the name