Home
last modified time | relevance | path

Searched refs:quote_via (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/urllib/
Dparse.py910 quote_via=quote_plus): argument
949 k = quote_via(k, safe)
951 k = quote_via(str(k), safe, encoding, errors)
954 v = quote_via(v, safe)
956 v = quote_via(str(v), safe, encoding, errors)
961 k = quote_via(k, safe)
963 k = quote_via(str(k), safe, encoding, errors)
966 v = quote_via(v, safe)
969 v = quote_via(v, safe, encoding, errors)
977 v = quote_via(str(v), safe, encoding, errors)
[all …]
/third_party/python/Doc/library/
Durllib.parse.rst648 errors=None, quote_via=quote_plus)
658 characters, where both *key* and *value* are quoted using the *quote_via*
663 passed as *quote_via* is :func:`quote`, which will encode spaces as ``%20``
676 *quote_via* (the *encoding* and *errors* parameters are only passed
690 *quote_via* parameter.
/third_party/python/Lib/test/
Dtest_urlparse.py994 quote_via=urllib.parse.quote)
997 safe='/', quote_via=urllib.parse.quote)
/third_party/python/Misc/NEWS.d/
D3.5.0b1.rst346 *quote_via* argument added to urllib.parse.urlencode.
/third_party/python/Doc/whatsnew/
D3.5.rst2038 A new *quote_via* argument for the