summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-03-28 12:40:24 (GMT)
committerGeorg Brandl <georg@python.org>2006-03-28 12:40:24 (GMT)
commitf1349cd05d31ba0a925d9931a7c437a9650c6488 (patch)
tree1c104179ce784202c1d3cdfdef34d8680ecfc5c6 /Misc
parent240ec6b9efc2d9d9a23ee76383051acc2df9e074 (diff)
downloadcpython-f1349cd05d31ba0a925d9931a7c437a9650c6488.zip
cpython-f1349cd05d31ba0a925d9931a7c437a9650c6488.tar.gz
cpython-f1349cd05d31ba0a925d9931a7c437a9650c6488.tar.bz2
Bug #1459963: urllib2 now normalizes HTTP header names correctly
with title().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 42b6e40..7dade8e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -483,6 +483,12 @@ Extension Modules
Library
-------
+- Bug #1459963: urllib2 now normalizes HTTP header names correctly
+ with title().
+
+- Bug #1459963: urllib2 now normalizes HTTP header names correctly
+ with title().
+
- Queue.Queue objects now support .task_done() and .join() methods
to make it easier to monitor when daemon threads have completed
processing all enqueued tasks. Patch #1455676.