Home
last modified time | relevance | path

Searched refs:unquote (Results 1 – 23 of 23) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
Dutils.py222 def unquote(str): function
280 value = unquote(value)
302 s = urllib.unquote(s)
316 rawval = unquote(value[2])
324 return unquote(value)
Dmessage.py86 return value[0], value[1], utils.unquote(value[2])
88 return utils.unquote(value)
513 def get_params(self, failobj=None, header='content-type', unquote=True): argument
530 if unquote:
536 unquote=True): argument
565 if unquote:
605 unquote=requote):
630 for p, v in self.get_params(header=header, unquote=requote):
666 params = self.get_params(header=header, unquote=requote)
Dquoprimime.py104 def unquote(s): function
300 decoded += unquote(line[i:i+3])
324 return unquote(s)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dnturl2path.py22 return urllib.unquote('\\'.join(components))
32 path = path + '\\' + urllib.unquote(comp)
DSimpleHTTPServer.py114 displaypath = cgi.escape(urllib.unquote(self.path))
152 path = posixpath.normpath(urllib.unquote(path))
Durlparse.py317 def unquote(s): function
393 name = unquote(nv[0].replace('+', ' '))
394 value = unquote(nv[1].replace('+', ' '))
Drobotparser.py109 line[1] = urllib.unquote(line[1].strip())
136 parsed_url = urlparse.urlparse(urllib.unquote(url))
Durllib.py53 return unquote(pathname)
296 host = unquote(host)
392 host = unquote(host)
513 host = unquote(host)
523 path = unquote(path)
596 data = unquote(data)
1184 def unquote(s): function
1203 return unquote(s)
1570 uqs = unquote(qs)
Durllib2.py111 from urllib import (unwrap, unquote, splittype, splithost, quote,
255 self.host = unquote(self.host)
725 user_pass = '%s:%s' % (unquote(user), unquote(password))
728 hostport = unquote(hostport)
1364 host = unquote(host)
1374 dirs = map(unquote, dirs)
Dmimetools.py76 return rfc822.unquote(p[n:])
DCGIHTTPServer.py165 uqrest = urllib.unquote(rest)
Drfc822.py472 def unquote(s): function
Dxmlrpclib.py1345 auth = base64.encodestring(urllib.unquote(auth))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_urllib.py449 result = urllib.unquote(given)
459 result = urllib.unquote(escape_string)
463 result = urllib.unquote(escape_string)
472 result = urllib.unquote(given)
477 result = urllib.unquote(given)
482 result = urllib.unquote(given)
490 result = urllib.unquote(given)
499 result = urllib.unquote(given)
510 result = urllib.unquote(given)
519 r = urllib.unquote(u'br%C3%BCckner_sapporo_20050930.doc')
Dtest_rfc822.py249 eq(rfc822.unquote('"foo\\\\wacky\\"name"'), 'foo\\wacky"name')
Dtest_ssl.py681 path = os.path.normpath(urllib.unquote(path))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Durlparse.py336 def unquote(s): function
345 append(unquote(str(bits[i])).decode('latin1'))
424 name = unquote(nv[0].replace('+', ' '))
425 value = unquote(nv[1].replace('+', ' '))
DSimpleHTTPServer.py125 displaypath = cgi.escape(urllib.unquote(self.path))
165 path = posixpath.normpath(urllib.unquote(path))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/wsgiref/
Dsimple_server.py82 env['PATH_INFO'] = urllib.unquote(path)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/
Dtest_email_renamed.py327 self.assertEqual(msg.get_param('name', unquote=False),
344 eq(msg.get_param('importance', unquote=False), '"high value"')
348 eq(msg.get_params(unquote=False), [('text/plain', ''),
2683 self.assertEqual(quoprimime.unquote(quoprimime.quote(c)), c)
2973 eq(msg.get_param('title', unquote=False),
Dtest_email.py362 self.assertEqual(msg.get_param('name', unquote=False),
387 eq(msg.get_param('importance', unquote=False), '"high value"')
391 eq(msg.get_params(unquote=False), [('text/plain', ''),
2854 self.assertEqual(quopriMIME.unquote(quopriMIME.quote(c)), c)
3169 eq(msg.get_param('title', unquote=False),
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
Dwebchecker.py753 path = urllib.url2pathname(urllib.unquote(url))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/faqwiz/
Dfaqwiz.py142 value = urllib.unquote(value)