Searched refs:unquote (Results 1 - 25 of 44) sorted by relevance

12

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dnturl2path.py22 return urllib.unquote('\\'.join(components))
32 path = path + '\\' + urllib.unquote(comp)
H A Dmacurl2path.py49 # and finally unquote slashes and other funny characters
50 return urllib.unquote(rv)
H A DSimpleHTTPServer.py114 displaypath = cgi.escape(urllib.unquote(self.path))
152 path = posixpath.normpath(urllib.unquote(path))
H A Durlparse.py325 # unquote method for parse_qs and parse_qsl
335 def unquote(s): function
336 """unquote('abc%20def') -> 'abc def'."""
344 append(unquote(str(bits[i])).decode('latin1'))
423 name = unquote(nv[0].replace('+', ' '))
424 value = unquote(nv[1].replace('+', ' '))
H A Drobotparser.py109 line[1] = urllib.unquote(line[1].strip())
136 parsed_url = urlparse.urlparse(urllib.unquote(url))
H A Durllib.py36 "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(pat
1204 def unquote(s): function
[all...]
H A Durllib2.py112 from urllib import (unwrap, unquote, splittype, splithost, quote, namespace
265 self.host = unquote(self.host)
735 user_pass = '%s:%s' % (unquote(user), unquote(password))
738 hostport = unquote(hostport)
1379 host = unquote(host)
1389 dirs = map(unquote, dirs)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dnturl2path.py22 return urllib.unquote('\\'.join(components))
32 path = path + '\\' + urllib.unquote(comp)
H A Dmacurl2path.py49 # and finally unquote slashes and other funny characters
50 return urllib.unquote(rv)
H A DSimpleHTTPServer.py114 displaypath = cgi.escape(urllib.unquote(self.path))
152 path = posixpath.normpath(urllib.unquote(path))
H A Durlparse.py325 # unquote method for parse_qs and parse_qsl
335 def unquote(s): function
336 """unquote('abc%20def') -> 'abc def'."""
344 append(unquote(str(bits[i])).decode('latin1'))
423 name = unquote(nv[0].replace('+', ' '))
424 value = unquote(nv[1].replace('+', ' '))
H A Drobotparser.py109 line[1] = urllib.unquote(line[1].strip())
136 parsed_url = urlparse.urlparse(urllib.unquote(url))
H A Durllib.py36 "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(pat
1204 def unquote(s): function
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
H A Dutils.py20 'unquote',
229 # rfc822.unquote() doesn't properly de-backslash-ify in Python pre-2.3.
230 def unquote(str):
289 value = unquote(value)
311 s = urllib.unquote(s)
325 rawval = unquote(value[2])
333 return unquote(value)
222 def unquote(str): function
H A Dquoprimime.py43 'unquote',
105 def unquote(s):
304 decoded += unquote(line[i:i+3])
329 return unquote(s)
104 def unquote(s): function
H A Dmessage.py87 return value[0], value[1], utils.unquote(value[2])
89 return utils.unquote(value)
515 def get_params(self, failobj=None, header='content-type', unquote=True):
526 Content-Type. If unquote is True, the value is unquoted.
532 if unquote:
538 unquote=True):
560 VALUE item in the 3-tuple) is always unquoted, unless unquote is set
567 if unquote:
607 unquote=requote):
632 for p, v in self.get_params(header=header, unquote
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
H A Dutils.py20 'unquote',
229 # rfc822.unquote() doesn't properly de-backslash-ify in Python pre-2.3.
230 def unquote(str):
289 value = unquote(value)
311 s = urllib.unquote(s)
325 rawval = unquote(value[2])
333 return unquote(value)
222 def unquote(str): function
H A Dquoprimime.py43 'unquote',
105 def unquote(s):
304 decoded += unquote(line[i:i+3])
329 return unquote(s)
104 def unquote(s): function
H A Dmessage.py87 return value[0], value[1], utils.unquote(value[2])
89 return utils.unquote(value)
515 def get_params(self, failobj=None, header='content-type', unquote=True):
526 Content-Type. If unquote is True, the value is unquoted.
532 if unquote:
538 unquote=True):
560 VALUE item in the 3-tuple) is always unquoted, unless unquote is set
567 if unquote:
607 unquote=requote):
632 for p, v in self.get_params(header=header, unquote
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_urllib.py560 """Tests for unquote() and unquote_plus()
572 result = urllib.unquote(given)
574 "using unquote(): %s != %s" % (expect, result))
582 result = urllib.unquote(escape_string)
586 result = urllib.unquote(escape_string)
588 "using unquote(): not all characters escaped: "
595 result = urllib.unquote(given)
596 self.assertEqual(expect, result, "using unquote(): %r != %r"
600 result = urllib.unquote(given)
601 self.assertEqual(expect, result, "using unquote()
[all...]
H A Dtest_rfc822.py249 eq(rfc822.unquote('"foo\\\\wacky\\"name"'), 'foo\\wacky"name')
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_urllib.py560 """Tests for unquote() and unquote_plus()
572 result = urllib.unquote(given)
574 "using unquote(): %s != %s" % (expect, result))
582 result = urllib.unquote(escape_string)
586 result = urllib.unquote(escape_string)
588 "using unquote(): not all characters escaped: "
595 result = urllib.unquote(given)
596 self.assertEqual(expect, result, "using unquote(): %r != %r"
600 result = urllib.unquote(given)
601 self.assertEqual(expect, result, "using unquote()
[all...]
H A Dtest_rfc822.py249 eq(rfc822.unquote('"foo\\\\wacky\\"name"'), 'foo\\wacky"name')
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
H A Dsimple_server.py82 env['PATH_INFO'] = urllib.unquote(path)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
H A Dsimple_server.py82 env['PATH_INFO'] = urllib.unquote(path)

Completed in 3182 milliseconds

12