summaryrefslogtreecommitdiff
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-13 09:23:15 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-13 09:23:15 +0200
commit86f7fe2081eae28a74be681453a59c243f9632cf (patch)
treea3df90dc9b2700b912010efb85a43a19de5c8a37 /Doc/whatsnew
parent1e97cd7fb5d5776bf8bbf76bb4586d0b86833d45 (diff)
downloadcpython-86f7fe2081eae28a74be681453a59c243f9632cf.tar.gz
Issue #29192: Removed deprecated features in the http.cookies module.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.7.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index c4814e2706..411f9167e7 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -153,3 +153,10 @@ Changes in the Python API
* A format string argument for :meth:`string.Formatter.format`
is now :ref:`positional-only <positional-only_parameter>`.
(Contributed by Serhiy Storchaka in :issue:`29193`.)
+
+* Attributes :attr:`~http.cookies.Morsel.key`,
+ :attr:`~http.cookies.Morsel.value` and
+ :attr:`~http.cookies.Morsel.coded_value` of class
+ :class:`http.cookies.Morsel` are now read-only.
+ Use the :meth:`~http.cookies.Morsel.set` method for setting them.
+ (Contributed by Serhiy Storchaka in :issue:`29192`.)