Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								3c0d0baf2b 
								
							 
						 
						
							
							
								
								Issue  #12319 : Support for chunked encoding of HTTP request bodies  
							
							... 
							
							
							
							When the body object is a file, its size is no longer determined with
fstat(), since that can report the wrong result (e.g. reading from a pipe).
Instead, determine the size using seek(), or fall back to chunked encoding
for unseekable files.
Also, change the logic for detecting text files to check for TextIOBase
inheritance, rather than inspecting the “mode” attribute, which may not
exist (e.g. BytesIO and StringIO).  The Content-Length for text files is no
longer determined ahead of time, because the original logic could have been
wrong depending on the codec and newline translation settings.
Patch by Demian Brecht and Rolf Krahl, with a few tweaks by me. 
							
						 
						
							2016-08-24 06:33:33 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								c86c91aab0 
								
							 
						 
						
							
							
								
								Merge typo fixes from 3.5  
							
							
							
						 
						
							2016-04-05 06:20:32 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								cc71a795df 
								
							 
						 
						
							
							
								
								Fix typos in documentation and comments  
							
							
							
						 
						
							2016-04-05 06:19:42 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								ec195fba5b 
								
							 
						 
						
							
							
								
								Issue  #26499 : Merge HTTPResponse fix from 3.5  
							
							
							
						 
						
							2016-03-17 07:05:34 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								ce911c3fed 
								
							 
						 
						
							
							
								
								Issue  #26499 : Fixes to HTTPResponse.readline() and read1(), by Silent Ghost  
							
							
							
						 
						
							2016-03-17 06:42:48 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								192697e33b 
								
							 
						 
						
							
							
								
								Issue  #26045 : Merge http.client error addition from 3.5  
							
							
							
						 
						
							2016-02-09 11:57:11 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								44391481d7 
								
							 
						 
						
							
							
								
								Issue  #26045 : Add UTF-8 suggestion to error in http.client  
							
							... 
							
							
							
							Based on patch by Guido van Rossum. 
							
						 
						
							2016-02-09 10:20:52 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								3fd4a735d8 
								
							 
						 
						
							
							
								
								Issue  #25899 : Converted non-ASCII characters in docstrings and manpage  
							
							... 
							
							
							
							to ASCII replacements.  Removed UTF-8 BOM from Misc/NEWS.
Original patch by Chris Angelico. 
							
						 
						
							2015-12-18 13:10:37 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Raymond Hettinger 
								
							 
						 
						
							
							
							
							
								
							
							
								15b87bfedc 
								
							 
						 
						
							
							
								
								Add in missing docstrings.  
							
							
							
						 
						
							2015-08-18 22:03:08 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								2116b12da5 
								
							 
						 
						
							
							
								
								Issue  #23865 : close() methods in multiple modules now are idempotent and more  
							
							... 
							
							
							
							robust at shutdown. If needs to release multiple resources, they are released
even if errors are occured. 
							
						 
						
							2015-04-10 13:29:28 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								7e7a3dba5f 
								
							 
						 
						
							
							
								
								Issue  #23865 : close() methods in multiple modules now are idempotent and more  
							
							... 
							
							
							
							robust at shutdown. If needs to release multiple resources, they are released
even if errors are occured. 
							
						 
						
							2015-04-10 13:24:41 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									R David Murray 
								
							 
						 
						
							
							
							
							
								
							
							
								cae7bdb424 
								
							 
						 
						
							
							
								
								#3566 : Clean up handling of remote server disconnects.  
							
							... 
							
							
							
							This changeset does two things: introduces a new RemoteDisconnected exception
(that subclasses ConnectionResetError and BadStatusLine) so that a remote
server disconnection can be detected by client code (and provides a better
error message for debugging purposes), and ensures that the client socket is
closed if a ConnectionError happens, so that the automatic re-connection code
can work if the application handles the error and continues on.
Tests are added that confirm that a connection is re-used or not re-used
as appropriate to the various combinations of protocol version and headers.
Patch by Martin Panter, reviewed by Demian Brecht.  (Tweaked only slightly by
me.) 
							
						 
						
							2015-04-05 19:26:29 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									R David Murray 
								
							 
						 
						
							
							
							
							
								
							
							
								0a0d20edfb 
								
							 
						 
						
							
							
								
								Merge:  #23539 : Set Content-Length to 0 for PUT, POST, and PATCH if body is None.  
							
							
							
						 
						
							2015-03-22 15:19:01 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									R David Murray 
								
							 
						 
						
							
							
							
							
								
							
							
								beed8402ca 
								
							 
						 
						
							
							
								
								#23539 : Set Content-Length to 0 for PUT, POST, and PATCH if body is None.  
							
							... 
							
							
							
							Some http servers will reject PUT, POST, and PATCH requests if they
do not have a Content-Length header.
Patch by James Rutherford, with additional cleaning up of the
'request' documentation by me. 
							
						 
						
							2015-03-22 15:18:23 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								b669bfc2be 
								
							 
						 
						
							
							
								
								Issue  #22928 : Disabled HTTP header injections in http.client.  
							
							... 
							
							
							
							Original patch by Demian Brecht. 
							
						 
						
							2015-03-12 11:15:15 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								a112a8ae47 
								
							 
						 
						
							
							
								
								Issue  #22928 : Disabled HTTP header injections in http.client.  
							
							... 
							
							
							
							Original patch by Demian Brecht. 
							
						 
						
							2015-03-12 11:13:36 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Berker Peksag 
								
							 
						 
						
							
							
							
							
								
							
							
								8e28679417 
								
							 
						 
						
							
							
								
								Issue  #23439 : Add missing entries to http.client.__all__.  
							
							... 
							
							
							
							Also, document the LineTooLong exception since it can be raised by
the members of public API (e.g. http.client.HTTPResponse).
Patch by Martin Panter. 
							
						 
						
							2015-02-20 09:45:05 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Berker Peksag 
								
							 
						 
						
							
							
							
							
								
							
							
								babc688180 
								
							 
						 
						
							
							
								
								Issue  #23439 : Add missing entries to http.client.__all__.  
							
							... 
							
							
							
							Also, document the LineTooLong exception since it can be raised by
the members of public API (e.g. http.client.HTTPResponse).
Patch by Martin Panter. 
							
						 
						
							2015-02-20 09:39:38 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Berker Peksag 
								
							 
						 
						
							
							
							
							
								
							
							
								ab53ab0a84 
								
							 
						 
						
							
							
								
								Issue  #13128 : Print response headers for CONNECT requests when debuglevel > 0.  
							
							... 
							
							
							
							Patch by Demian Brecht. 
							
						 
						
							2015-02-03 12:22:11 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								9d8a3ad02a 
								
							 
						 
						
							
							
								
								http.client: disable Nagle's algorithm ( closes   #23302 )  
							
							... 
							
							
							
							Patch by Demian Brecht. 
							
						 
						
							2015-01-23 11:02:57 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								e4db76967d 
								
							 
						 
						
							
							
								
								Issue  #21793 : Added http.HTTPStatus enums (i.e. HTTPStatus.OK,  
							
							... 
							
							
							
							HTTPStatus.NOT_FOUND).  Patch by Demian Brecht. 
							
						 
						
							2014-12-23 16:28:28 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								4ac7ed97a8 
								
							 
						 
						
							
							
								
								Issue  #22095 : Fixed HTTPConnection.set_tunnel with default port.  The port  
							
							... 
							
							
							
							value in the host header was set to "None".  Patch by Demian Brecht. 
							
						 
						
							2014-12-12 09:29:15 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								a090f01bb6 
								
							 
						 
						
							
							
								
								HTTPSConnection: prefer the context's check_hostname attribute over the constructor parameter ( #22959 )  
							
							
							
						 
						
							2014-12-07 13:18:25 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								b491e0521f 
								
							 
						 
						
							
							
								
								Issue  #21032 . Fixed socket leak if HTTPConnection.getresponse() fails.  
							
							... 
							
							
							
							Original patch by Martin Panter. 
							
						 
						
							2014-12-01 13:07:45 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								7243b574e5 
								
							 
						 
						
							
							
								
								don't require OpenSSL SNI to pass hostname to ssl functions ( #22921 )  
							
							... 
							
							
							
							Patch by Donald Stufft. 
							
						 
						
							2014-11-23 17:04:34 -06:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								d4a001b23c 
								
							 
						 
						
							
							
								
								Issue  #22095 : Fixed HTTPConnection.set_tunnel with default port.  The port  
							
							... 
							
							
							
							value in the host header was set to "None".  Patch by Demian Brecht. 
							
						 
						
							2014-12-12 09:30:18 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								b46247bee5 
								
							 
						 
						
							
							
								
								merge 3.4 ( #22959 )  
							
							
							
						 
						
							2014-12-07 13:47:34 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								2205da43a6 
								
							 
						 
						
							
							
								
								Issue  #21032 . Fixed socket leak if HTTPConnection.getresponse() fails.  
							
							... 
							
							
							
							Original patch by Martin Panter. 
							
						 
						
							2014-12-01 13:10:12 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								f9284ae8ed 
								
							 
						 
						
							
							
								
								merge 3.4 ( #22921 )  
							
							
							
						 
						
							2014-11-23 17:06:39 -06:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								1cca273669 
								
							 
						 
						
							
							
								
								merge 3.4 ( #22417 )  
							
							
							
						 
						
							2014-11-03 14:36:48 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								4ffb075271 
								
							 
						 
						
							
							
								
								PEP 476: enable HTTPS certificate verification by default ( #22417 )  
							
							... 
							
							
							
							Patch by Alex Gaynor with some modifications by me. 
							
						 
						
							2014-11-03 14:29:33 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								465e60e654 
								
							 
						 
						
							
							
								
								Issue  #22033 : Reprs of most Python implemened classes now contain actual  
							
							... 
							
							
							
							class name instead of hardcoded one. 
							
						 
						
							2014-07-25 23:36:00 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Senthil Kumaran 
								
							 
						 
						
							
							
							
							
								
							
							
								166214c344 
								
							 
						 
						
							
							
								
								merge from 3.4  
							
							... 
							
							
							
							Issue #7776 : Fix ``Host:'' header and reconnection when using  http.client.HTTPConnection.set_tunnel()
Patch by Nikolaus Rath. 
							
						 
						
							2014-04-14 13:10:05 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Senthil Kumaran 
								
							 
						 
						
							
							
							
							
								
							
							
								9da047b3a5 
								
							 
						 
						
							
							
								
								Issue  #7776 : Fix ``Host:'' header and reconnection when using http.client.HTTPConnection.set_tunnel().  
							
							... 
							
							
							
							Patch by Nikolaus Rath. 
							
						 
						
							2014-04-14 13:07:56 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								03ce1c013d 
								
							 
						 
						
							
							
								
								(Merge 3.4) Issue  #20976 : pyflakes: Remove unused imports  
							
							
							
						 
						
							2014-03-20 09:22:39 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								7fa767e517 
								
							 
						 
						
							
							
								
								Issue  #20976 : pyflakes: Remove unused imports  
							
							
							
						 
						
							2014-03-20 09:16:38 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Kristján Valur Jónsson 
								
							 
						 
						
							
							
							
							
								
							
							
								8e5d0caf92 
								
							 
						 
						
							
							
								
								Issue  #19009  
							
							... 
							
							
							
							Enhance HTTPResponse.readline() performance 
							
						 
						
							2014-03-19 10:07:26 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								cac05e2e90 
								
							 
						 
						
							
							
								
								Issue  #20007 : HTTPResponse.read(0) no more prematurely closes connection.  
							
							... 
							
							
							
							Original patch by Simon Sapin. 
							
						 
						
							2013-12-17 21:51:40 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								1c84ac1f55 
								
							 
						 
						
							
							
								
								Issue  #20007 : HTTPResponse.read(0) no more prematurely closes connection.  
							
							... 
							
							
							
							Original patch by Simon Sapin. 
							
						 
						
							2013-12-17 21:50:02 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Christian Heimes 
								
							 
						 
						
							
							
							
							
								
							
							
								f723c711d3 
								
							 
						 
						
							
							
								
								Issue 19509: Don't call match_hostname() twice in http.client.  
							
							
							
						 
						
							2013-12-05 07:51:17 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Christian Heimes 
								
							 
						 
						
							
							
							
							
								
							
							
								67986f9431 
								
							 
						 
						
							
							
								
								Issue  #19735 : Implement private function ssl._create_stdlib_context() to  
							
							... 
							
							
							
							create SSLContext objects in Python's stdlib module. It provides a single
configuration point and makes use of SSLContext.load_default_certs(). 
							
						 
						
							2013-11-23 22:43:47 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Georg Brandl 
								
							 
						 
						
							
							
							
							
								
							
							
								bf3f8eb960 
								
							 
						 
						
							
							
								
								Issue  #16037 : HTTPMessage.readheaders() raises an HTTPException when more than  
							
							... 
							
							
							
							100 headers are read.  Adapted from patch by Jyrki Pulliainen. 
							
						 
						
							2013-10-27 07:34:48 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Georg Brandl 
								
							 
						 
						
							
							
							
							
								
							
							
								b89b5df9c9 
								
							 
						 
						
							
							
								
								merge with 3.3  
							
							
							
						 
						
							2013-10-27 07:46:09 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Brett Cannon 
								
							 
						 
						
							
							
							
							
								
							
							
								cd171c8e92 
								
							 
						 
						
							
							
								
								Issue  #18200 : Back out usage of ModuleNotFoundError (8d28d44f3a9a)  
							
							
							
						 
						
							2013-07-04 17:43:24 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Brett Cannon 
								
							 
						 
						
							
							
							
							
								
							
							
								0a140668fa 
								
							 
						 
						
							
							
								
								Issue  #18200 : Update the stdlib (except tests) to use  
							
							... 
							
							
							
							ModuleNotFoundError. 
							
						 
						
							2013-06-13 20:57:26 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Andrew Svetlov 
								
							 
						 
						
							
							
							
							
								
							
							
								3042b5ebf4 
								
							 
						 
						
							
							
								
								Issue  #16658 : add missing return to HTTPConnection.send().  
							
							... 
							
							
							
							Patch by Jeff Knupp 
							
						 
						
							2013-04-12 22:50:42 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Andrew Svetlov 
								
							 
						 
						
							
							
							
							
								
							
							
								7b2c8bb833 
								
							 
						 
						
							
							
								
								Issue  #16658 : add missing return to HTTPConnection.send().  
							
							... 
							
							
							
							Patch by Jeff Knupp 
							
						 
						
							2013-04-12 22:49:19 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Senthil Kumaran 
								
							 
						 
						
							
							
							
							
								
							
							
								052ddb01b3 
								
							 
						 
						
							
							
								
								#17460 : Remove the strict argument of HTTPConnection and removing the  
							
							... 
							
							
							
							DeprecationWarning being issued from 3.2 onwards. 
							
						 
						
							2013-03-18 14:11:41 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								daf990f8a7 
								
							 
						 
						
							
							
								
								Issue  #16723 : httplib.HTTPResponse no longer marked closed when the connection  
							
							... 
							
							
							
							is automatically closed. 
							
						 
						
							2013-02-06 10:37:19 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								b6c86fd87f 
								
							 
						 
						
							
							
								
								Issue  #16723 : httplib.HTTPResponse no longer marked closed when the connection  
							
							... 
							
							
							
							is automatically closed. 
							
						 
						
							2013-02-06 10:35:40 +02:00