Home
last modified time | relevance | path

Searched refs:coded_value (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Doc/library/
Dhttp.cookies.rst80 Return a tuple ``(real_value, coded_value)`` from a string representation.
87 Return a tuple ``(real_value, coded_value)``. *val* can be any type, but
88 ``coded_value`` will always be converted to a string.
160 :attr:`~Morsel.coded_value` are read-only. Use :meth:`~Morsel.set` for
172 .. attribute:: Morsel.coded_value
182 .. method:: Morsel.set(key, value, coded_value)
184 Set the *key*, *value* and *coded_value* attributes.
/third_party/python/Lib/http/
Dcookies.py306 def coded_value(self): member in Morsel
397 append("%s=%s" % (self.key, self.coded_value))
485 def __set(self, key, real_value, coded_value): argument
488 M.set(key, real_value, coded_value)
/third_party/python/Lib/test/
Dtest_http_cookies.py241 self.assertIsNone(morsel.coded_value)
275 self.assertEqual(M.coded_value, "%s_coded_val" % i)
299 morsel.coded_value = ''
/third_party/python/Misc/NEWS.d/
D3.5.0a3.rst360 attributes key, value and coded_value directly now is deprecated. update()
362 takes into account attributes key, value and coded_value. copy() now returns
/third_party/python/Doc/whatsnew/
D3.5.rst2306 :attr:`~http.cookies.Morsel.coded_value` of :class:`http.cookies.Morsel`
D3.7.rst2291 :attr:`~http.cookies.Morsel.coded_value` of class