/external/python/cpython3/Doc/library/ |
D | http.cookiejar.rst | 1 :mod:`http.cookiejar` --- Cookie handling for HTTP clients 4 .. module:: http.cookiejar 10 **Source code:** :source:`Lib/http/cookiejar.py` 14 The :mod:`http.cookiejar` module defines classes for automatic handling of HTTP 24 :mod:`http.cookiejar` attempts to follow the de-facto Netscape cookie protocol (which 104 expected that users of :mod:`http.cookiejar` construct their own :class:`Cookie` 116 :mod:`http.cookiejar` and :mod:`http.cookies` modules do not depend on each 122 the major browsers (and :mod:`http.cookiejar`) only bears a passing resemblance to 441 import http.cookiejar 442 class MyCookiePolicy(http.cookiejar.DefaultCookiePolicy): [all …]
|
D | internet.rst | 44 http.cookiejar.rst
|
D | http.cookies.rst | 63 Module :mod:`http.cookiejar` 64 HTTP cookie handling for web *clients*. The :mod:`http.cookiejar` and
|
D | http.rst | 22 * :mod:`http.cookiejar` provides persistence of cookies
|
/external/toolchain-utils/cwp/interpreter/ |
D | app_engine_pull.py | 46 cookiejar = cookielib.LWPCookieJar() 47 opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookiejar))
|
/external/curl/docs/ |
D | HTTP-COOKIES.md | 41 TAB. That file is called the cookiejar in curl terminology. 43 When libcurl saves a cookiejar, it creates a file header of its own in which 88 closed save all known cookies to the given cookiejar file. Write-only.
|
/external/python/cpython3/Lib/test/ |
D | test_http_cookiejar.py | 10 from http.cookiejar import (time2isoz, http2time, iso2time, time2netscape, 296 def interact_2965(cookiejar, url, *set_cookie_hdrs): argument 297 return _interact(cookiejar, url, set_cookie_hdrs, "Set-Cookie2") 299 def interact_netscape(cookiejar, url, *set_cookie_hdrs): argument 300 return _interact(cookiejar, url, set_cookie_hdrs, "Set-Cookie") 302 def _interact(cookiejar, url, set_cookie_hdrs, hdr_name): argument 305 cookiejar.add_cookie_header(req) 311 cookiejar.extract_cookies(res, req)
|
/external/python/cpython2/Lib/ |
D | urllib2.py | 1246 def __init__(self, cookiejar=None): argument 1248 if cookiejar is None: 1249 cookiejar = cookielib.CookieJar() 1250 self.cookiejar = cookiejar 1253 self.cookiejar.add_cookie_header(request) 1257 self.cookiejar.extract_cookies(response, request)
|
/external/curl/tests/data/ |
D | test1408 | 8 cookiejar
|
D | test31 | 7 cookiejar 71 HTTP with weirdly formatted cookies and cookiejar storage
|
D | test73 | 7 cookiejar
|
D | test1136 | 8 cookiejar
|
D | test1105 | 7 cookiejar
|
D | test327 | 43 HTTP with cookiejar without cookies left
|
D | test61 | 7 cookiejar
|
D | test1415 | 8 cookiejar
|
D | test46 | 7 cookiejar
|
D | test1561 | 8 cookiejar
|
/external/python/cpython2/Lib/test/ |
D | test_cookielib.py | 246 def interact_2965(cookiejar, url, *set_cookie_hdrs): argument 247 return _interact(cookiejar, url, set_cookie_hdrs, "Set-Cookie2") 249 def interact_netscape(cookiejar, url, *set_cookie_hdrs): argument 250 return _interact(cookiejar, url, set_cookie_hdrs, "Set-Cookie") 252 def _interact(cookiejar, url, set_cookie_hdrs, hdr_name): argument 256 cookiejar.add_cookie_header(req) 262 cookiejar.extract_cookies(res, req)
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 1367 def __init__(self, cookiejar=None): argument 1368 import http.cookiejar 1369 if cookiejar is None: 1370 cookiejar = http.cookiejar.CookieJar() 1371 self.cookiejar = cookiejar 1374 self.cookiejar.add_cookie_header(request) 1378 self.cookiejar.extract_cookies(response, request)
|
/external/curl/src/ |
D | tool_cfgable.h | 47 char *cookiejar; /* write to this file */ member
|
D | tool_cfgable.c | 58 Curl_safefree(config->cookiejar); in free_config_fields()
|
D | tool_operate.c | 1222 if(config->cookiejar) in operate_do() 1223 my_setopt_str(curl, CURLOPT_COOKIEJAR, config->cookiejar); in operate_do() 1228 if(config->cookie || config->cookiefile || config->cookiejar) { in operate_do()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a3.rst | 419 Fixed parsing cookies with absent keys or values in cookiejar. Patch by
|
D | 3.7.3rc1.rst | 32 domain A is a suffix match of domain B while using a cookiejar with 33 :class:`http.cookiejar.DefaultCookiePolicy` policy. Patch by Karthikeyan
|