From: Andrew Svetlov Date: Fri, 12 Apr 2013 19:50:42 +0000 (+0300) Subject: Issue #16658: add missing return to HTTPConnection.send(). X-Git-Tag: v3.4.0a1~970 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3042b5ebf4aee83957428870b86de394646b731c;p=thirdparty%2FPython%2Fcpython.git Issue #16658: add missing return to HTTPConnection.send(). Patch by Jeff Knupp --- 3042b5ebf4aee83957428870b86de394646b731c diff --cc Misc/NEWS index 90c609e31df6,c8acda3d601e..c2f9e7a2b6e7 --- a/Misc/NEWS +++ 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.