summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-11-02 22:35:47 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2014-11-02 22:35:47 +0200
commitc8ed7939762e88db23a27bd1a35f372c3c0cb61c (patch)
tree94145aeac27e0489bcaf17ae7966b64fa17366cb /Misc
parente46157b8a1940fef93e123c6003379055aef4200 (diff)
downloadcpython-c8ed7939762e88db23a27bd1a35f372c3c0cb61c.tar.gz
Issue #22775: Fixed unpickling of Cookie.SimpleCookie with protocol 2.
Patch by Tim Graham.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index b1d6d3f072..d44240f0f9 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -484,6 +484,7 @@ Chris Gonnerman
Shelley Gooch
David Goodger
Hans de Graaff
+Tim Graham
Nathaniel Gray
Eddy De Greef
Grant Griffin
diff --git a/Misc/NEWS b/Misc/NEWS
index 1da8970130..57c752ca66 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,9 @@ Core and Builtins
Library
-------
+- Issue #22775: Fixed unpickling of Cookie.SimpleCookie with protocol 2.
+ Patch by Tim Graham.
+
- Issue #22776: Brought excluded code into the scope of a try block in
SysLogHandler.emit().