/third_party/python/Lib/test/ |
D | test_urllib.py | 1307 result = urllib.parse.urlencode(given) 1340 result = urllib.parse.urlencode(given) 1344 result = urllib.parse.urlencode(given) 1351 result = urllib.parse.urlencode(given) 1353 result = urllib.parse.urlencode(given, True) 1361 self.assertEqual("", urllib.parse.urlencode({})) 1362 self.assertEqual("", urllib.parse.urlencode([])) 1365 self.assertEqual("a=1", urllib.parse.urlencode({"a": 1})) 1366 self.assertEqual("a=None", urllib.parse.urlencode({"a": None})) 1369 self.assertEqual("a=1&a=2", urllib.parse.urlencode({"a": [1, 2]}, True)) [all …]
|
D | test_urlparse.py | 773 self.assertRaises(TypeError, urllib.parse.urlencode, "foo") 979 result = urllib.parse.urlencode({'a': [1, 2], 'b': (3, 4, 5)}, True) 987 result = urllib.parse.urlencode({'a': Trivial()}, True) 991 result = urllib.parse.urlencode({'a': 'some value'}) 993 result = urllib.parse.urlencode({'a': 'some value/another'}, 996 result = urllib.parse.urlencode({'a': 'some value/another'},
|
D | test_httpservers.py | 825 params = urllib.parse.urlencode(
|
/third_party/flutter/skia/tools/skqp/ |
D | find_commit_with_best_gold_results.py | 48 ('query', urllib.urlencode(qq)), 54 return 'https://public-gold.skia.org/json/export?' + urllib.urlencode(query)
|
D | cut_release.py | 49 f = urllib2.urlopen('https://public-gold.skia.org/json/export?' + urllib.urlencode([
|
/third_party/skia/tools/skqp/ |
D | find_commit_with_best_gold_results.py | 48 ('query', urllib.urlencode(qq)), 54 return 'https://public-gold.skia.org/json/export?' + urllib.urlencode(query)
|
D | cut_release.py | 53 f = urlopen('https://public-gold.skia.org/json/export?' + urllib.urlencode([
|
/third_party/googletest/googletest/scripts/ |
D | upload.py | 207 data=urllib.urlencode({ 243 (self.host, urllib.urlencode(args))) 337 url += "?" + urllib.urlencode(args)
|
/third_party/libwebsockets/lib/roles/cgi/ |
D | cgi-server.c | 42 urlencode(const char *in, int inlen, char *out, int outlen) in urlencode() function 250 i = urlencode(t, i - lws_ptr_diff(t, tok), p, lws_ptr_diff(end, p)); in lws_cgi()
|
/third_party/python/Doc/library/ |
D | urllib.parse.rst | 207 Use the :func:`urllib.parse.urlencode` function (with the ``doseq`` 252 Use the :func:`urllib.parse.urlencode` function to convert such lists of pairs into 647 .. function:: urlencode(query, doseq=False, safe='', encoding=None, \ 683 :func:`urllib.parse.urlencode` method can be used for generating the query
|
D | urllib.request.rst | 208 :func:`urllib.parse.urlencode` function takes a mapping or sequence 1312 >>> params = urllib.parse.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0}) 1319 from urlencode is encoded to bytes before it is sent to urlopen as data:: 1323 >>> data = urllib.parse.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0}) 1384 :func:`urllib.parse.urlencode` function. 1468 :func:`urllib.parse.urlencode` function.
|
D | http.client.rst | 582 >>> params = urllib.parse.urlencode({'@number': 12524, '@type': 'issue', '@action': 'show'})
|
D | logging.handlers.rst | 989 :meth:`mapLogRecord` and then :func:`urllib.parse.urlencode` to encode the
|
/third_party/python/Doc/howto/ |
D | urllib2.rst | 125 data = urllib.parse.urlencode(values) 154 >>> url_values = urllib.parse.urlencode(data) 191 data = urllib.parse.urlencode(values)
|
/third_party/jinja2/ |
D | CHANGES.rst | 577 - Fixed the ``for_qs`` flag for ``urlencode``. 617 - Escape query strings for urlencode properly. Previously slashes were 672 - Added ``urlencode`` filter that automatically quotes values for URL
|
/third_party/python/Lib/urllib/ |
D | parse.py | 909 def urlencode(query, doseq=False, safe='', encoding=None, errors=None, function
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0b1.rst | 346 *quote_via* argument added to urllib.parse.urlencode.
|
/third_party/python/Lib/logging/ |
D | handlers.py | 1231 data = urllib.parse.urlencode(self.mapLogRecord(record))
|
/third_party/python/Doc/faq/ |
D | library.rst | 695 quoted using :func:`urllib.parse.urlencode`. For example, to send 699 >>> urllib.parse.urlencode({'name': 'Guy Steele, Jr.'})
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 2039 :func:`parse.urlencode() <urllib.parse.urlencode>`
|
D | 3.2.rst | 2240 And, the :func:`~urllib.parse.urlencode` function is now much more flexible, 2245 >>> urllib.parse.urlencode([
|
/third_party/python/Misc/ |
D | HISTORY | 13267 - Issue #5468: urlencode to handle bytes type and other encodings in its query 29046 obscure bug in quote_plus(). Added urlencode(dict) -- convenience
|
/third_party/NuttX/ |
D | ReleaseNotes | 3243 * Applications: New NSH commands: ifup, ifdown, urlencode, urldecode,
|