Home | History | Annotate | Download | only in python2.7

Lines Matching defs:unquote

36            "urlcleanup", "quote", "quote_plus", "unquote", "unquote_plus",
56 return unquote(pathname)
299 host = unquote(host)
324 proxy_passwd = unquote(proxy_passwd)
330 user_passwd = unquote(user_passwd)
394 host = unquote(host)
414 proxy_passwd = unquote(proxy_passwd)
419 user_passwd = unquote(user_passwd)
517 host = unquote(host)
527 path = unquote(path)
599 data = unquote(data)
1031 # unquote('abc%20def') -> 'abc def'
1204 def unquote(s):
1205 """unquote('abc%20def') -> 'abc def'."""
1213 append(unquote(str(bits[i])).decode('latin1'))
1233 """unquote('%7e/abc+def') -> '~/abc def'"""
1235 return unquote(s)
1596 # Test and time quote() and unquote()
1603 uqs = unquote(qs)