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

Lines Matching refs:quote

36            "urlcleanup", "quote", "quote_plus", "unquote", "unquote_plus",
61 return quote(pathname)
183 fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]|")
732 proxyhost = quote(user, safe='') + ':' + quote(passwd, safe='') + '@' + proxyhost
749 proxyhost = quote(user, safe='') + ':' + quote(passwd, safe='') + '@' + proxyhost
762 host = quote(user, safe='') + ':' + quote(passwd, safe='') + '@' + host
775 host = quote(user, safe='') + ':' + quote(passwd, safe='') + '@' + host
1032 # quote('abc def') -> 'abc%20def')
1245 def quote(s, safe='/'):
1246 """quote('abc def') -> 'abc%20def'
1260 By default, the quote function is intended for quoting the path
1262 is reserved, but in typical usage the quote function is being
1285 """Quote the query fragment of a URL; replacing ' ' with '+'"""
1287 s = quote(s, safe + ' ')
1289 return quote(s, safe)
1596 # Test and time quote() and unquote()
1602 qs = quote(s)