Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.7.0
/
Lib
/
http
tag
ae1f6af15f3e4110616801e235873e47fd7d1977
tagger
Ned Deily <nad@python.org>
Wed Jun 27 03:11:05 2018
object
1bf9cc509326bc42cd8cb1650eb9bf64550d817e
Python 3.7.0
4f53e2a
[3.7] bpo-31639: Change ThreadedHTTPServer to ThreadingHTTPServer class name (GH-7195) (GH-7219)
by Julien Palard
· 7 years ago
9fc998d
bpo-991266: Fix quoting of Comment attribute of SimpleCookie (GH-6555)
by Miss Islington (bot)
· 7 years ago
f8d2c3c
bpo-31639: Use threads in http.server module. (GH-5018)
by Miss Islington (bot)
· 7 years ago
61d478c
bpo-31399: Let OpenSSL verify hostname and IP address (#3462)
by Christian Heimes
· 8 years ago
53f7a7c
bpo-32297: Few misspellings found in Python source code comments. (#4803)
by Mike
· 8 years ago
ad455cd
bpo-31945: Configurable blocksize in HTTP(S)Connection (#4279)
by Nir Soffer
· 8 years ago
52ad72d
bpo-30553: Add status code 421 to http.HTTPStatus (GH-2589)
by Vitor Pereira
· 8 years ago
13ad3b7
bpo-31462: Remove trailing whitespaces. (#3564)
by Serhiy Storchaka
· 8 years ago
a6a4dc8
bpo-31370: Remove support for threads-less builds (#3385)
by Antoine Pitrou
· 8 years ago
a17a2f5
bpo-28707: Add the directory parameter to http.server.SimpleHTTPRequestHandler and http.server module (#1776)
by Stéphane Wirtel
· 8 years ago
a632d00
Remove duplicate line in Lib/http/client.py (#1665)
by remitamine
· 8 years ago
7e4db2f
bpo-30166: Import command-line parsing modules only when needed. (#1293)
by Serhiy Storchaka
· 8 years ago
2e576f5
bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263)
by Serhiy Storchaka
· 8 years ago
351adda
bpo-29654 : Support If-Modified-Since HTTP header (browser cache) (#298)
by Pierre Quentel
· 8 years ago
cc28337
Issue #29192: Removed deprecated features in the http.cookies module.
by Serhiy Storchaka
· 9 years ago
70d28a1
Remove unused imports.
by Serhiy Storchaka
· 9 years ago
e82338d
Issue #28548: Parse HTTP request version even if too many words received
by Martin Panter
· 9 years ago
741d494
Issue #23214: Remove BufferedReader.read1(-1) workaround
by Martin Panter
· 9 years ago
bd48d27
Issue #22493: Inline flags now should be used only at the start of the
by Serhiy Storchaka
· 9 years ago
d048637
Issue #28022: Deprecate ssl-related arguments in favor of SSLContext.
by Christian Heimes
· 9 years ago
451d0e3
Issue 27948: Allow backslashes in the literal string portion of f-strings, but not in the expressions. Also, require expressions to begin and end with literal curly braces.
by Eric V. Smith
· 9 years ago
10427f4
[merge from 3.5] - Issue28010 - Make http.client.HTTPConnection.putrequest
by Senthil Kumaran
· 9 years ago
5dc504c
Issue28010 - Make http.client.HTTPConnection.putrequest documentation consistent with the code.
by Senthil Kumaran
· 9 years ago
0be894b
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
by Martin Panter
· 9 years ago
44b548d
#27364: fix "incorrect" uses of escape character in the stdlib.
by R David Murray
· 9 years ago
6e02560
Issue 27921: Remove backslash from another f-string.
by Eric V. Smith
· 9 years ago
15f44ab
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
by Raymond Hettinger
· 9 years ago
ef91bb2
Issue #12319: Always send file request bodies using chunked encoding
by Martin Panter
· 9 years ago
f74c33a
Merge
by Raymond Hettinger
· 9 years ago
7ea386e
Issue 19504: Change "customise" to "customize" American spelling.
by Raymond Hettinger
· 9 years ago
3c0d0ba
Issue #12319: Support for chunked encoding of HTTP request bodies
by Martin Panter
· 9 years ago
290b42d
[merge from 3.5] - Issue #27466: Change time format returned by
by Senthil Kumaran
· 9 years ago
d5b47fb
Issue #27466: Change time format returned by http.cookie.time2netscape,
by Senthil Kumaran
· 9 years ago
40de69a
Issue #25738: Merge HTTP server from 3.5
by Martin Panter
· 9 years ago
e42e129
Issue #25738: Don’t send message body for 205 Reset Content
by Martin Panter
· 9 years ago
3e04d5b
Issue #27076: Merge spelling from 3.5
by Martin Panter
· 9 years ago
46f5072
Issue #27076: Doc, comment and tests spelling fixes
by Martin Panter
· 9 years ago
1ce738e
Merge typo fixes from 3.5
by Martin Panter
· 9 years ago
f0564164
Fix typos in comments, documentation and test method names
by Martin Panter
· 9 years ago
3a31cca
Issue #24902: Print server URL on http.server startup
by Berker Peksag
· 9 years ago
791ac54
Issue #26657: Merge http.server fix from 3.5
by Martin Panter
· 9 years ago
d274b3f
Issue #26657: Fix Windows directory traversal vulnerability with http.server
by Martin Panter
· 9 years ago
0cab9c1
Issue #26404: Add context manager to socketserver, by Aviv Palivoda
by Martin Panter
· 9 years ago
da3bb38
Issue #26585: Eliminate _quote_html() and use html.escape(quote=False)
by Martin Panter
· 9 years ago
c86c91a
Merge typo fixes from 3.5
by Martin Panter
· 9 years ago
cc71a79
Fix typos in documentation and comments
by Martin Panter
· 9 years ago
50badad
Issue #26586: Simple enhancements to BaseHTTPRequestHandler by Xiang Zhang
by Martin Panter
· 9 years ago
b93e4b2
Issue #26586: Merge excessive HTTP header handling from 3.5
by Martin Panter
· 9 years ago
acc0319
Issue #26586: Handle excessive header fields in http.server, by Xiang Zhang
by Martin Panter
· 9 years ago
ec195fb
Issue #26499: Merge HTTPResponse fix from 3.5
by Martin Panter
· 9 years ago
ce911c3
Issue #26499: Fixes to HTTPResponse.readline() and read1(), by Silent Ghost
by Martin Panter
· 9 years ago
04bc5b9
Issue #747320: Use email.utils.formatdate() to avoid code duplication
by Berker Peksag
· 9 years ago
0647ef0
Issue #16181: cookiejar.http2time() now returns None if year is higher than datetime.MAXYEAR
by Berker Peksag
· 9 years ago
20be53e
Issue #16181: cookiejar.http2time() now returns None if year is higher than datetime.MAXYEAR
by Berker Peksag
· 9 years ago
b118870
Issue #26302: merge from 3.5
by Jason R. Coombs
· 9 years ago
192697e
Issue #26045: Merge http.client error addition from 3.5
by Martin Panter
· 10 years ago
4439148
Issue #26045: Add UTF-8 suggestion to error in http.client
by Martin Panter
· 10 years ago
102d813
Issue #26302: Correctly identify comma as an invalid character for a cookie (correcting regression in Python 3.5).
by Anish Shah
· 10 years ago
3fd4a73
Issue #25899: Converted non-ASCII characters in docstrings and manpage
by Serhiy Storchaka
· 10 years ago
22fd1c2
Merge typo and grammar fixes from 3.5
by Martin Panter
· 10 years ago
32acc16
Merge typo and grammar fixes from 3.4 into 3.5
by Martin Panter
· 10 years ago
ac34e09
Correct Content-Type syntax in documentation
by Martin Panter
· 10 years ago
4a7c03a
Issue #25523: Merge a-to-an corrections from 3.5.
by Serhiy Storchaka
· 10 years ago
a84f6c3
Issue #25523: Merge a-to-an corrections from 3.4.
by Serhiy Storchaka
· 10 years ago
d65c949
Issue #25523: Further a-to-an corrections.
by Serhiy Storchaka
· 10 years ago
585a6ac
Merge typo fixes from 3.5
by Martin Panter
· 10 years ago
3f930dc
Merge typo fixes from 3.4 into 3.5
by Martin Panter
· 10 years ago
9955a37
Various minor typos in documentation and comments
by Martin Panter
· 10 years ago
5e84d03
Issues #25232, #24657: Merge two CGI server fixes from 3.5
by Martin Panter
· 10 years ago
56b76d2
Issues #25232, #24657: Merge two CGI server fixes from 3.4 into 3.5
by Martin Panter
· 10 years ago
cb29e8c
Issue #24657: Prevent CGIRequestHandler from collapsing the URL query
by Martin Panter
· 10 years ago
a02e18a
Issue #25232: Fix CGIRequestHandler's splitting of URL query
by Martin Panter
· 10 years ago
15b87bf
Add in missing docstrings.
by Raymond Hettinger
· 10 years ago
5409177
Issue #24774: Fix docstring in http.server.test.
by Robert Collins
· 10 years ago
9644f24
Issue #24774: Fix docstring in http.server.test.
by Robert Collins
· 10 years ago
a0e5d98
Issue #23888: Handle fractional time in cookie expiry. Patch by ssh.
by Robert Collins
· 10 years ago
f3d9c31
Issue #23888: Handle fractional time in cookie expiry. Patch by ssh.
by Robert Collins
· 10 years ago
5a69420
merge 3.4 (#22931)
by Benjamin Peterson
· 10 years ago
c4ae86e
merge 3.3 (#22931)
by Benjamin Peterson
· 10 years ago
d504f20
merge 3.2 (#22931)
by Benjamin Peterson
· 10 years ago
9bd476e
allow square brackets in cookie values (closes #22931)
by Benjamin Peterson
· 10 years ago
7e7a3db
Issue #23865: close() methods in multiple modules now are idempotent and more
by Serhiy Storchaka
· 10 years ago
2116b12
Issue #23865: close() methods in multiple modules now are idempotent and more
by Serhiy Storchaka
· 10 years ago
cae7bdb
#3566: Clean up handling of remote server disconnects.
by R David Murray
· 10 years ago
46ba6c8
Issue #22831: Use "with" to avoid possible fd leaks.
by Serhiy Storchaka
· 10 years ago
1813c17
#2211: properly document the Morsel behavior changes.
by R David Murray
· 10 years ago
0a0d20e
Merge: #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None.
by R David Murray
· 10 years ago
beed840
#23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None.
by R David Murray
· 10 years ago
6c32585
Restored backward compatibility of pickling http.cookies.Morsel. It was
by Serhiy Storchaka
· 10 years ago
9c1a9b2
Issue #2211: Updated the implementation of the http.cookies.Morsel class.
by Serhiy Storchaka
· 10 years ago
577fc4e
Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar.
by Serhiy Storchaka
· 10 years ago
f7cc3fc
Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar.
by Serhiy Storchaka
· 10 years ago
b669bfc
Issue #22928: Disabled HTTP header injections in http.client.
by Serhiy Storchaka
· 10 years ago
a112a8a
Issue #22928: Disabled HTTP header injections in http.client.
by Serhiy Storchaka
· 10 years ago
c0a23e6
Issue #21793: BaseHTTPRequestHandler again logs response code as numeric,
by Serhiy Storchaka
· 10 years ago
abbf0f4
Issue #23442: Rename two member names to stay backward compatible
by Berker Peksag
· 11 years ago
8e28679
Issue #23439: Add missing entries to http.client.__all__.
by Berker Peksag
· 11 years ago
babc688
Issue #23439: Add missing entries to http.client.__all__.
by Berker Peksag
· 11 years ago
1130c7f
merge 3.4 (#23410)
by Benjamin Peterson
· 11 years ago
70e2847
document the requestline and close_connection attributes, use real booleans, and add tests (closes #23410)
by Benjamin Peterson
· 11 years ago
Next »