summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-13 07:05:01 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-13 07:05:01 (GMT)
commit577fc4e87f59b94f2e906c77654a44a2ee586c1e (patch)
tree870ada49e702c8994f5d9cb6f4ca2bd87bca48bf /Misc
parent79fbeee2378dc31a5edebc9a5aa8f3fe9726933e (diff)
downloadcpython-577fc4e87f59b94f2e906c77654a44a2ee586c1e.zip
cpython-577fc4e87f59b94f2e906c77654a44a2ee586c1e.tar.gz
cpython-577fc4e87f59b94f2e906c77654a44a2ee586c1e.tar.bz2
Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar.
Patch by Demian Brecht.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 793cc10..170cd4e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar.
+ Patch by Demian Brecht.
+
- Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now
handle exceptions raised by an iterator. Patch by Alon Diamant and Davin
Potts.