Home
last modified time | relevance | path

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

/external/python/cpython2/Doc/library/
Dcookie.rst31 in Cookie name (as :attr:`~Morsel.key`).
50 are :class:`Morsel` instances. Note that upon setting a key to a value, the
51 value is first converted to a :class:`Morsel` containing the key and the value.
128 *header* are sent to each :class:`Morsel`'s :meth:`output` method. *sep* is used
148 found there as :class:`Morsel`\ s. If it is a dictionary, it is equivalent to::
156 Morsel Objects
160 .. class:: Morsel
186 .. attribute:: Morsel.value
191 .. attribute:: Morsel.coded_value
196 .. attribute:: Morsel.key
[all …]
/external/python/cpython2/Lib/
DCookie.py405 class Morsel(dict): class
588 M = self.get(key, Morsel())
595 if isinstance(value, Morsel):
668 elif K.lower() in Morsel._reserved:
671 if K.lower() in Morsel._flags:
/external/python/cpython2/Doc/whatsnew/
D2.6.rst1899 * The :mod:`Cookie` module's :class:`Morsel` objects now support an
/external/python/cpython2/Misc/
DNEWS9204 - Issue #1638033: Cookie.Morsel gained the httponly attribute.