Searched refs:coded_value (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Doc/library/ |
D | http.cookies.rst | 80 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/ |
D | cookies.py | 306 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/ |
D | test_http_cookies.py | 241 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/ |
D | 3.5.0a3.rst | 360 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/ |
D | 3.5.rst | 2306 :attr:`~http.cookies.Morsel.coded_value` of :class:`http.cookies.Morsel`
|
D | 3.7.rst | 2291 :attr:`~http.cookies.Morsel.coded_value` of class
|