]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #16658: add missing return to HTTPConnection.send().
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Fri, 12 Apr 2013 19:50:42 +0000 (22:50 +0300)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Fri, 12 Apr 2013 19:50:42 +0000 (22:50 +0300)
Patch by Jeff Knupp

1  2 
Lib/http/client.py
Lib/test/test_httplib.py
Misc/NEWS

Simple merge
Simple merge
diff --cc Misc/NEWS
index 90c609e31df6253d9cec7332aaea4b7bb1584f03,c8acda3d601e60f0e804980562222b2d002d69ba..c2f9e7a2b6e71e746437444eb5a9d88b35f2a4a7
+++ b/Misc/NEWS
@@@ -34,9 -23,9 +34,12 @@@ Core and Builtin
  Library
  -------
  
+ - Issue #16658: add missing return to HTTPConnection.send()
+   Patch by Jeff Knupp.
 +- Issue #9556: Allowed specifying a time-of-day for a TimedRotatingFileHandler
 +  to rotate.
 +
  - Issue #14971: unittest test discovery no longer gets confused when a function
    has a different __name__ than its name in the TestCase class dictionary.