summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-12 19:49:19 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-12 19:49:19 (GMT)
commit7b2c8bb833780a6f6a0b5480f65d27248d7b3b53 (patch)
tree8bf8f58f639df574ed2f0dffd26de50baac07505 /Misc/NEWS
parenta3b255f275b09d5e12b43832c022df35a4fed9ac (diff)
downloadcpython-7b2c8bb833780a6f6a0b5480f65d27248d7b3b53.zip
cpython-7b2c8bb833780a6f6a0b5480f65d27248d7b3b53.tar.gz
cpython-7b2c8bb833780a6f6a0b5480f65d27248d7b3b53.tar.bz2
Issue #16658: add missing return to HTTPConnection.send().
Patch by Jeff Knupp
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2adfb5e..c8acda3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,9 @@ Core and Builtins
Library
-------
+- Issue #16658: add missing return to HTTPConnection.send()
+ Patch by Jeff Knupp.
+
- Issue #14971: unittest test discovery no longer gets confused when a function
has a different __name__ than its name in the TestCase class dictionary.