summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2009-08-16 06:43:50 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2009-08-16 06:43:50 (GMT)
commitf70ce68c9cce352a34cd30ecf5168d93bc379817 (patch)
tree6e28a01f37098faffea8660b0f1dae8caae5759e
parent5a92b13a468bcdcb133784e392322e503cd24276 (diff)
downloadcpython-f70ce68c9cce352a34cd30ecf5168d93bc379817.zip
cpython-f70ce68c9cce352a34cd30ecf5168d93bc379817.tar.gz
cpython-f70ce68c9cce352a34cd30ecf5168d93bc379817.tar.bz2
Fixing Issue6711 - macurl2path has typos that raise AttributeError
-rw-r--r--Lib/macurl2path.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/macurl2path.py b/Lib/macurl2path.py
index 11944cf..f22fb20 100644
--- a/Lib/macurl2path.py
+++ b/Lib/macurl2path.py
@@ -13,7 +13,7 @@ def url2pathname(pathname):
#
# XXXX The .. handling should be fixed...
#
- tp = urllib.parsesplittype(pathname)[0]
+ tp = urllib.parse.splittype(pathname)[0]
if tp and tp != 'file':
raise RuntimeError('Cannot convert non-local URL to pathname')
# Turn starting /// into /, an empty hostname means current host
@@ -47,7 +47,7 @@ def url2pathname(pathname):
i = i + 1
rv = ':' + ':'.join(components)
# and finally unquote slashes and other funny characters
- return urllib.parseunquote(rv)
+ return urllib.parse.unquote(rv)
def pathname2url(pathname):
"""OS-specific conversion from a file system path to a relative URL
@@ -74,7 +74,7 @@ def pathname2url(pathname):
def _pncomp2url(component):
# We want to quote slashes
- return urllib.parsequote(component[:31], safe='')
+ return urllib.parse.quote(component[:31], safe='')
def test():
for url in ["index.html",