Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_urllib.py1307 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 …]
Dtest_urlparse.py773 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'},
Dtest_httpservers.py825 params = urllib.parse.urlencode(
/third_party/flutter/skia/tools/skqp/
Dfind_commit_with_best_gold_results.py48 ('query', urllib.urlencode(qq)),
54 return 'https://public-gold.skia.org/json/export?' + urllib.urlencode(query)
Dcut_release.py49 f = urllib2.urlopen('https://public-gold.skia.org/json/export?' + urllib.urlencode([
/third_party/skia/tools/skqp/
Dfind_commit_with_best_gold_results.py48 ('query', urllib.urlencode(qq)),
54 return 'https://public-gold.skia.org/json/export?' + urllib.urlencode(query)
Dcut_release.py53 f = urlopen('https://public-gold.skia.org/json/export?' + urllib.urlencode([
/third_party/googletest/googletest/scripts/
Dupload.py207 data=urllib.urlencode({
243 (self.host, urllib.urlencode(args)))
337 url += "?" + urllib.urlencode(args)
/third_party/libwebsockets/lib/roles/cgi/
Dcgi-server.c42 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/
Durllib.parse.rst207 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
Durllib.request.rst208 :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.
Dhttp.client.rst582 >>> params = urllib.parse.urlencode({'@number': 12524, '@type': 'issue', '@action': 'show'})
Dlogging.handlers.rst989 :meth:`mapLogRecord` and then :func:`urllib.parse.urlencode` to encode the
/third_party/python/Doc/howto/
Durllib2.rst125 data = urllib.parse.urlencode(values)
154 >>> url_values = urllib.parse.urlencode(data)
191 data = urllib.parse.urlencode(values)
/third_party/jinja2/
DCHANGES.rst577 - 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/
Dparse.py909 def urlencode(query, doseq=False, safe='', encoding=None, errors=None, function
/third_party/python/Misc/NEWS.d/
D3.5.0b1.rst346 *quote_via* argument added to urllib.parse.urlencode.
/third_party/python/Lib/logging/
Dhandlers.py1231 data = urllib.parse.urlencode(self.mapLogRecord(record))
/third_party/python/Doc/faq/
Dlibrary.rst695 quoted using :func:`urllib.parse.urlencode`. For example, to send
699 >>> urllib.parse.urlencode({'name': 'Guy Steele, Jr.'})
/third_party/python/Doc/whatsnew/
D3.5.rst2039 :func:`parse.urlencode() <urllib.parse.urlencode>`
D3.2.rst2240 And, the :func:`~urllib.parse.urlencode` function is now much more flexible,
2245 >>> urllib.parse.urlencode([
/third_party/python/Misc/
DHISTORY13267 - 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/
DReleaseNotes3243 * Applications: New NSH commands: ifup, ifdown, urlencode, urldecode,