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 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Terry Jan Reedy 
								
							 
						 
						
							
							
							
							
								
							
							
								ffcb022738 
								
							 
						 
						
							
							
								
								Issue  #27787 : No longer call deleted test_main().  
							
							
							
						 
						
							2016-08-23 14:20:37 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								1fa6915427 
								
							 
						 
						
							
							
								
								Issue  #27787 : Remove test_main() and hard-coded list of test classes  
							
							... 
							
							
							
							The @reap_threads decorator made the test wait (for up to 1 s) until
background threads have finished.  Calling join() with a timeout should be
equivalent. 
							
						 
						
							2016-08-23 09:01:43 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								b63c56077f 
								
							 
						 
						
							
							
								
								Close HTTP connections and responses in tests to avoid ResourceWarnings  
							
							
							
						 
						
							2016-08-12 11:59:52 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								8d56c026a5 
								
							 
						 
						
							
							
								
								Issue  #27125 : Fix various errors like “will [be] inherited”  
							
							
							
						 
						
							2016-05-29 04:13:35 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Panter 
								
							 
						 
						
							
							
							
							
								
							
							
								d979b2cfcf 
								
							 
						 
						
							
							
								
								Issue  #21069 : Move test_fileno() from test_urllibnet and rewrite it  
							
							... 
							
							
							
							* No longer attempts to close already freed socket file descriptor
* Use socket object to be compatible with Windows
* Do not use a timeout to avoid complication with non-blocking mode
* Use internal localhost server rather than depending on a third party
* Avoid trouble with buffered HTTP data by testing tunnelled CONNECT data 
							
						 
						
							2016-04-09 14:03:17 +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 
								
							 
						 
						
							
							
							
							
								
							
							
								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 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									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 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								69899e6f3f 
								
							 
						 
						
							
							
								
								Merge 3.4 (httplib)  
							
							
							
						 
						
							2015-02-27 17:47:40 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Victor Stinner 
								
							 
						 
						
							
							
							
							
								
							
							
								b389b48265 
								
							 
						 
						
							
							
								
								Issue  #23526 : Fix ResourceWarning in test_httplib. Patch written by Alex Shkop.  
							
							
							
						 
						
							2015-02-27 17:47:23 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Berker Peksag 
								
							 
						 
						
							
							
							
							
								
							
							
								abbf0f40bb 
								
							 
						 
						
							
							
								
								Issue  #23442 : Rename two member names to stay backward compatible  
							
							... 
							
							
							
							with the constants in http.client.
Initial patch by Demian Brecht. 
							
						 
						
							2015-02-20 14:57:31 +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 
								
							 
						 
						
							
							
							
							
								
							
							
								60a2f49c8c 
								
							 
						 
						
							
							
								
								merge 3.4 ( #19996 )  
							
							
							
						 
						
							2015-01-25 23:31:58 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								155ceaa454 
								
							 
						 
						
							
							
								
								handle headers with no key ( closes   #19996 )  
							
							... 
							
							
							
							Patch by Cory Benfield. 
							
						 
						
							2015-01-25 23:30:30 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Senthil Kumaran 
								
							 
						 
						
							
							
							
							
								
							
							
								cc522bdd0c 
								
							 
						 
						
							
							
								
								merge from 3.4  
							
							... 
							
							
							
							Increase http.client.HTTPConnection test coverage.
Added a new tunnel test to verify setting of _tunnel_host, _tunnel_port,
_tunnel_headers attributes on HTTPConnection object. 
							
						 
						
							2015-01-24 19:26:18 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Senthil Kumaran 
								
							 
						 
						
							
							
							
							
								
							
							
								e6cc70123e 
								
							 
						 
						
							
							
								
								Increase http.client.HTTPConnection test coverage.  
							
							... 
							
							
							
							Added a new tunnel test to verify setting of _tunnel_host, _tunnel_port,
_tunnel_headers attributes on HTTPConnection object. 
							
						 
						
							2015-01-24 19:24:59 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								9d8a3ad02a 
								
							 
						 
						
							
							
								
								http.client: disable Nagle's algorithm ( closes   #23302 )  
							
							... 
							
							
							
							Patch by Demian Brecht. 
							
						 
						
							2015-01-23 11:02:57 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								2a7d05a9f2 
								
							 
						 
						
							
							
								
								merge 3.4  
							
							
							
						 
						
							2014-12-13 16:13:31 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Benjamin Peterson 
								
							 
						 
						
							
							
							
							
								
							
							
								9566de18e6 
								
							 
						 
						
							
							
								
								make sure server threads get cleaned up  
							
							
							
						 
						
							2014-12-13 16:13:24 -05: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 
								
							 
						 
						
							
							
							
							
								
							
							
								2615e9e293 
								
							 
						 
						
							
							
								
								don't fail tests when www.python.org can't be validated by the system  
							
							
							
						 
						
							2014-11-25 15:16:55 -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 
								
							 
						 
						
							
							
							
							
								
							
							
								8dcaa4b1c6 
								
							 
						 
						
							
							
								
								merge 3.4  
							
							
							
						 
						
							2014-11-25 18:05:40 -06:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Georg Brandl 
								
							 
						 
						
							
							
							
							
								
							
							
								dca213dd77 
								
							 
						 
						
							
							
								
								merge with 3.4  
							
							
							
						 
						
							2014-11-05 22:17:29 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Georg Brandl 
								
							 
						 
						
							
							
							
							
								
							
							
								fbaf931096 
								
							 
						 
						
							
							
								
								test_httplib: use self-signed.pythontest.net for verification test with non-root-CA cert  
							
							
							
						 
						
							2014-11-05 20:37:40 +01: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 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Charles-François Natali 
								
							 
						 
						
							
							
							
							
								
							
							
								6e20460dc6 
								
							 
						 
						
							
							
								
								Issue  #21566 : Make use of socket.listen() default backlog.  
							
							
							
						 
						
							2014-07-23 19:28:13 +01: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 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Kristján Valur Jónsson 
								
							 
						 
						
							
							
							
							
								
							
							
								8e5d0caf92 
								
							 
						 
						
							
							
								
								Issue  #19009  
							
							... 
							
							
							
							Enhance HTTPResponse.readline() performance 
							
						 
						
							2014-03-19 10:07:26 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								d3e1207191 
								
							 
						 
						
							
							
								
								Issue  #20555 : Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref tests.  
							
							
							
						 
						
							2014-02-08 14:51:10 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								25d8aeac7c 
								
							 
						 
						
							
							
								
								Issue  #20555 : Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref tests.  
							
							
							
						 
						
							2014-02-08 14:50:08 +02: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 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									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 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								48e6a8c88a 
								
							 
						 
						
							
							
								
								Issue  #18743 : Fix references to non-existant "StringIO" module  
							
							... 
							
							
							
							in docstrings and comments. 
							
						 
						
							2013-08-29 11:39:48 +03:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Serhiy Storchaka 
								
							 
						 
						
							
							
							
							
								
							
							
								50254c57cd 
								
							 
						 
						
							
							
								
								Issue  #18743 : Fix references to non-existant "StringIO" module  
							
							... 
							
							
							
							in docstrings and comments. 
							
						 
						
							2013-08-29 11:35:43 +03:00