Home
last modified time | relevance | path

Searched refs:BaseCookie (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Doc/library/
Dcookie.rst47 .. class:: BaseCookie([input])
58 This class derives from :class:`BaseCookie` and overrides :meth:`value_decode`
64 This class derives from :class:`BaseCookie` and overrides :meth:`value_decode`
76 This class derives from :class:`BaseCookie`. It overrides :meth:`value_decode`
108 .. method:: BaseCookie.value_decode(val)
111 type. This method does nothing in :class:`BaseCookie` --- it exists so it can be
115 .. method:: BaseCookie.value_encode(val)
118 string. This method does nothing in :class:`BaseCookie` --- it exists so it can
125 .. method:: BaseCookie.output([attrs[, header[, sep]]])
137 .. method:: BaseCookie.js_output([attrs])
[all …]
/external/python/cpython2/Lib/
DCookie.py558 class BaseCookie(dict): class
682 class SimpleCookie(BaseCookie):
696 class SerialCookie(BaseCookie):
713 BaseCookie.__init__(self, input)
722 class SmartCookie(BaseCookie):
738 BaseCookie.__init__(self, input)
/external/python/cpython2/Misc/
DNEWS1759 - Issue #19870: BaseCookie now parses 'secure' and 'httponly' flags.