]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #22775: Fixed unpickling of http.cookies.SimpleCookie with protocol 2
authorSerhiy Storchaka <storchaka@gmail.com>
Sun, 2 Nov 2014 20:19:56 +0000 (22:19 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Sun, 2 Nov 2014 20:19:56 +0000 (22:19 +0200)
and above.  Patch by Tim Graham.

1  2 
Misc/ACKS
Misc/NEWS

diff --cc Misc/ACKS
index 23e97d41a27bcd7b593629d660dd019769562717,30b6a0ec22d9ef1e9b903c7a3d798bf6d9631b07..a63bac76f57ba4cea708b18b922d6f2cb712db46
+++ b/Misc/ACKS
@@@ -496,7 -492,7 +496,8 @@@ Chris Gonnerma
  Shelley Gooch
  David Goodger
  Hans de Graaff
+ Tim Graham
 +Kim Gräsman
  Nathaniel Gray
  Eddy De Greef
  Grant Griffin
diff --cc Misc/NEWS
index 0c853905bf7564bb1738865a3cdbf109e7d0f5af,ee1c53f4b92113519d11b01b72f80754ae5d4a36..8d9564da7cc279acebda7ddf93cb93ecce4772e2
+++ b/Misc/NEWS
@@@ -183,6 -36,13 +183,9 @@@ Core and Builtin
  Library
  -------
  
 -- Issue #22366: urllib.request.urlopen will accept a context object
 -  (SSLContext) as an argument which will then used be for HTTPS connection.
 -  Patch by Alex Gaynor.
 -
+ - Issue #22775: Fixed unpickling of http.cookies.SimpleCookie with protocol 2
+   and above.  Patch by Tim Graham.
  - Issue #22776: Brought excluded code into the scope of a try block in
    SysLogHandler.emit().