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
|
7005b1f90a
|
#17678: Remove the use of a deprecated method http/cookiejar.py. Changing the
usage of get_origin_req_host() to origin_req_host.
Patch by Wei-Cheng Pan
|
2013-04-09 07:11:07 -07:00 |
Senthil Kumaran
|
d9fbf36bbd
|
#17678: Fix DeprecationWarning in the http/cookiejar.py by changing the usage
of get_origin_req_host() to origin_req_host.
Patch by Wei-Cheng Pan
|
2013-04-09 07:07:59 -07: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 |
Senthil Kumaran
|
2688644eef
|
#1291 http.server's send_error takes an optional explain argument
|
2013-03-15 07:53:21 -07:00 |
Senthil Kumaran
|
df1d3c5c4b
|
Reverting the changeset b87792757ee8 made for Issue #12921
|
2013-03-05 02:28:18 -08:00 |
Senthil Kumaran
|
884f0585a4
|
Reverting the changeset 5d76a4746d9d made for Issue #12921
|
2013-03-05 02:26:50 -08:00 |
Senthil Kumaran
|
1e7551dc87
|
Reverting the changeset 5126e62c60af made for Issue #12921
|
2013-03-05 02:25:58 -08:00 |
Senthil Kumaran
|
24431f1802
|
Fix Issue #12921: BaseHTTPServer's send_error should send the correct error
response message when send_error includes a message in addition to error
status. Patch contributed by Karl.
|
2013-03-05 01:26:33 -08:00 |
Senthil Kumaran
|
c37f835a43
|
Fix Issue #12921: BaseHTTPServer's send_error should send the correct error
response message when send_error includes a message in addition to error
status. Patch contributed by Karl.
|
2013-03-05 01:23:44 -08:00 |
Senthil Kumaran
|
3fb066d286
|
Fix Issue #12921: BaseHTTPServer's send_error should send the correct error
response message when send_error includes a message in addition to error
status. Patch contributed by Karl.
|
2013-03-05 01:22:57 -08:00 |
Giampaolo Rodola'
|
2f50aaf2ff
|
modernize some modules' code by using with statement around open()
|
2013-02-12 02:04:27 +01: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 |
Serhiy Storchaka
|
b5b9c8cd40
|
Issue #16723: httplib.HTTPResponse no longer marked closed when the connection
is automatically closed.
|
2013-02-06 10:31:57 +02:00 |
Antoine Pitrou
|
b5032c85af
|
Issue #15633: httplib.HTTPResponse is now mark closed when the server sends less than the advertised Content-Length.
|
2013-02-02 23:06:22 +01:00 |
Antoine Pitrou
|
6a35e18161
|
Issue #15633: httplib.HTTPResponse is now mark closed when the server sends less than the advertised Content-Length.
|
2013-02-02 23:04:56 +01:00 |
Antoine Pitrou
|
beec61ae4e
|
Issue #15633: httplib.HTTPResponse is now mark closed when the server sends less than the advertised Content-Length.
|
2013-02-02 22:49:34 +01:00 |
Antoine Pitrou
|
90e4774558
|
Issue #16833: In http.client.HTTPConnection, do not concatenate the request headers and body when the payload exceeds 16 KB, since it can consume more memory for no benefit.
Patch by Benno Leslie.
|
2013-01-02 22:10:47 +01:00 |
Andrew Svetlov
|
f7a17b48d7
|
Replace IOError with OSError (#16715)
|
2012-12-25 16:47:37 +02:00 |
Andrew Svetlov
|
0832af6628
|
Issue #16717: get rid of socket.error, replace with OSError
|
2012-12-18 23:10:48 +02:00 |
Andrew Svetlov
|
ad28c7f9da
|
Issue #16706: get rid of os.error
|
2012-12-18 22:02:39 +02:00 |
Antoine Pitrou
|
3454339430
|
Issue #16298: In HTTPResponse.read(), close the socket when there is no Content-Length and the incoming stream is finished.
Patch by Eran Rundstein.
|
2012-12-15 19:23:34 +01:00 |
Antoine Pitrou
|
d20e7745ee
|
Issue #16298: In HTTPResponse.read(), close the socket when there is no Content-Length and the incoming stream is finished.
Patch by Eran Rundstein.
|
2012-12-15 19:22:30 +01:00 |
Antoine Pitrou
|
084daa2f74
|
Issue #16298: In HTTPResponse.read(), close the socket when there is no Content-Length and the incoming stream is finished.
Patch by Eran Rundstein.
|
2012-12-15 19:11:54 +01:00 |
Senthil Kumaran
|
52d2720499
|
Issue #16088: BaseHTTPRequestHandler's send_error method includes a
Content-Length header. Patch by Antoine Pitrou.
|
2012-10-10 23:16:21 -07:00 |
Philip Jenvey
|
fd0d3e5d25
|
more yield from
patch by Serhiy Storchaka
|
2012-10-01 15:34:31 -07:00 |
Ezio Melotti
|
8b15ee0d6e
|
#15980: merge with 3.2.
|
2012-09-21 16:31:24 +03:00 |
Ezio Melotti
|
0847db7c01
|
#15980: properly escape newlines in docstrings. Patch by Serhiy Storchaka.
|
2012-09-21 16:30:22 +03:00 |
Meador Inge
|
da1ffbc4ee
|
Issue #15409: Replace use of deprecated urllib.request.Request methods in http.cookijar
Patch by Flávio Ribeiro.
|
2012-07-20 19:12:04 -05:00 |
Antoine Pitrou
|
de59565f29
|
Simplify code in HTTPResponse.read()
|
2013-02-02 23:08:51 +01:00 |
Senthil Kumaran
|
1251fafcc5
|
Issue 14989: http.server --cgi option can enable the CGI http server.
|
2012-06-03 16:15:54 +08:00 |
Senthil Kumaran
|
185f401308
|
merge - Fix for issue14426 - buildbots here I come
|
2012-05-20 16:58:59 +08:00 |
Senthil Kumaran
|
aeeba2629a
|
Fix for issue14426 - buildbots here I come
|
2012-05-20 16:58:30 +08:00 |
Senthil Kumaran
|
0b943a18ef
|
Issue #14426: Correct the Date format in Expires attribute of Set-Cookie. Patch by Federico Reghenzani and Müte Invert
|
2012-05-20 12:06:51 +08:00 |
Senthil Kumaran
|
00c2ec282e
|
Issue #14426: Correct the Date format in Expires attribute of Set-Cookie. Patch by Federico Reghenzani and Müte Invert
|
2012-05-20 12:05:16 +08:00 |
Senthil Kumaran
|
d34b57a9a2
|
merge - Fix Issue14721: Send Content-length: 0 for empty body () in the http.client requests
|
2012-05-19 16:58:45 +08:00 |
Senthil Kumaran
|
5fa4a89601
|
Fix Issue14721: Send Content-length: 0 for empty body () in the http.client requests
|
2012-05-19 16:58:09 +08:00 |
Hynek Schlawack
|
51b2ed51f0
|
#14809: Add HTTP status codes from RFC 6585 to http.server and http.client
Patch by EungJun Yi.
|
2012-05-16 09:51:07 +02:00 |
Senthil Kumaran
|
4ca008b643
|
issue6085 - update docs in default branch
|
2012-04-29 13:44:14 +08:00 |
Senthil Kumaran
|
db727b4a77
|
Fix issue6085 - Remove the delay caused by fqdn lookup while logging in BaseHTTPRequestHandler
|
2012-04-29 13:41:03 +08:00 |
Senthil Kumaran
|
1aacba497b
|
Fix Issue6085 - SimpleHTTPServer address_string to return client ip instead of client hostname
|
2012-04-29 12:51:54 +08:00 |
Senthil Kumaran
|
150c365430
|
httplib - minor update to check empty response
|
2012-04-29 10:40:23 +08:00 |
Senthil Kumaran
|
7e70a5c169
|
httplib - minor update to check empty response
|
2012-04-29 10:39:49 +08:00 |
Senthil Kumaran
|
aa872d1690
|
3.2 - Fix for Issue13684 - httplib tunnel infinite loop
|
2012-04-23 23:53:51 +08:00 |
Senthil Kumaran
|
b12771ab30
|
3.2 - Fix for Issue13684 - httplib tunnel infinite loop
|
2012-04-23 23:50:07 +08:00 |
Senthil Kumaran
|
3a441c1bed
|
Fix Issue2193 - Allow ":" character in Cookie NAME values
|
2012-04-22 09:19:04 +08:00 |