summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-13 07:09:35 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-13 07:09:35 (GMT)
commitf7cc3fccadae5f2bb764b16808806b7d1849871b (patch)
tree2424d9a9110ef8124aba9079d18646ddb49734f9 /Misc
parent63623ac2529ce9f293784c06215b018664c74491 (diff)
parent577fc4e87f59b94f2e906c77654a44a2ee586c1e (diff)
downloadcpython-f7cc3fccadae5f2bb764b16808806b7d1849871b.zip
cpython-f7cc3fccadae5f2bb764b16808806b7d1849871b.tar.gz
cpython-f7cc3fccadae5f2bb764b16808806b7d1849871b.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 78fca4d..35265e1 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.