Home
last modified time | relevance | path

Searched refs:path_return_ok (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Doc/library/
Dhttp.cookiejar.rst385 true from :meth:`domain_return_ok` and :meth:`path_return_ok` leaves all the
389 :meth:`path_return_ok` is called for the cookie path. Otherwise,
390 :meth:`path_return_ok` and :meth:`return_ok` are never called for that cookie
391 domain. If :meth:`path_return_ok` returns true, :meth:`return_ok` is called
398 ``"www.example.com"``. The same goes for :meth:`path_return_ok`.
403 .. method:: CookiePolicy.path_return_ok(path, request)
/external/python/cpython2/Doc/library/
Dcookielib.rst379 true from :meth:`domain_return_ok` and :meth:`path_return_ok` leaves all the
383 :meth:`path_return_ok` is called for the cookie path. Otherwise,
384 :meth:`path_return_ok` and :meth:`return_ok` are never called for that cookie
385 domain. If :meth:`path_return_ok` returns true, :meth:`return_ok` is called
392 ``"www.example.com"``. The same goes for :meth:`path_return_ok`.
397 .. method:: CookiePolicy.path_return_ok(path, request)
/external/python/cpython3/Lib/http/
Dcookiejar.py861 def path_return_ok(self, path, request): member in CookiePolicy
1002 not self.path_return_ok(cookie.path, request)):
1206 def path_return_ok(self, path, request): member in DefaultCookiePolicy
1276 if not self._policy.path_return_ok(path, request):
/external/python/cpython2/Lib/
Dcookielib.py848 def path_return_ok(self, path, request): member in CookiePolicy
1182 def path_return_ok(self, path, request): member in DefaultCookiePolicy
1251 if not self._policy.path_return_ok(path, request):