| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
The current regex based splitting produces a wrong result. For example::
http://abc#@def
Web browsers parse that URL as ``http://abc/#@def``, that is, the host
is ``abc``, the path is ``/``, and the fragment is ``#@def``.
(cherry picked from commit 90e01e50ef8a9e6c91f30d965563c378a4ad26de)
|
|
|
| |
(cherry picked from commit 906f5330b9c9a74cad1cf27fddaf77e99dff9edd)
|
|
|
| |
(cherry picked from commit 6fab78e9027f9ebd6414995580781b480433e595)
|
|
|
| |
(cherry picked from commit 6dfcc81f6b1c82a71a1c876e14424fb8b3573447)
|
|
|
| |
(cherry picked from commit a2a9ddd923a849124bdd1c484f70f02df6fde0e9)
|
|
|
| |
(cherry picked from commit 257b980b316a5206ecf6c23b958e2b7c4df4f3de)
|
|\ |
|
| |
| |
| |
| |
| |
| | |
In urllib.request, suffixes in no_proxy environment variable with
leading dots could match related hostnames again (e.g. .b.c matches a.b.c).
Patch by Milan Oberkirch.
|
| |
| |
| |
| |
| |
| | |
crawl_delay and request_rate
Initial patch by Peter Wirtz.
|
|\ \
| |/ |
|
| |
| |
| |
| | |
Patch by Gergely Imreh and Markus Holtermann.
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
The deprecation include manual creation of SSLSocket and certfile/keyfile
(or similar) in ftplib, httplib, imaplib, smtplib, poplib and urllib.
ssl.wrap_socket() is not marked as deprecated yet.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
|\ \
| |/
| |
| |
| |
| |
| | |
Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which
indicates that the script is in CGI mode.
Issue #27568 Reported and patch contributed by Rémi Rampin.
|
| |\
| | |
| | |
| | |
| | |
| | |
| | | |
Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which
indicates that the script is in CGI mode.
Issue #27568 Reported and patch contributed by Rémi Rampin.
|
| | |\
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which
indicates that the script is in CGI mode.
Issue #27568 Reported and patch contributed by Rémi Rampin.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which
indicates that the script is in CGI mode.
Issue #27568 Reported and patch contributed by Rémi Rampin.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Clarifies what is returned when and that the methods are common between the two.
Patch by Alexander Liu as part of #22797.
|
|\ \ \ \
| |/ / / |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Some servers send Location header fields with non-ASCII bytes, but "http.
client" requires the request target to be ASCII-encodable, otherwise a
UnicodeEncodeError is raised. Based on patch by Christian Heimes.
Python 2 does not suffer any problem because it allows non-ASCII bytes in the
HTTP request target.
|
| | | | |
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Issue #26892: Honor debuglevel flag in urllib.request.HTTPHandler.
Patch contributed by Chi Hsuan Yen.
|
| | | |
| | | |
| | | |
| | | | |
Patch contributed by Chi Hsuan Yen.
|
|\ \ \ \
| |/ / / |
|
| | | | |
|
|\ \ \ \
| |/ / / |
|
| | | |
| | | |
| | | |
| | | | |
Patch by Xiang Zhang.
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
Issue #26804: urllib.request will prefer lower_case proxy environment variables
over UPPER_CASE or Mixed_Case ones.
Patch contributed by Hans-Peter Jansen. Reviewed by Martin Panter and Senthil Kumaran.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
over UPPER_CASE or Mixed_Case ones.
Patch contributed by Hans-Peter Jansen. Reviewed by Martin Panter and Senthil Kumaran.
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
AbstractDigestAuthHandler.get_algorithm_impls
Raise ValueError if algorithm is not MD5 or SHA.
Initial patch by Mathieu Dupuy.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
AbstractDigestAuthHandler.get_algorithm_impls
Raise ValueError if algorithm is not MD5 or SHA.
Initial patch by Mathieu Dupuy.
|
| | | |
| | | |
| | | |
| | | | |
to format short Python version.
|
|\ \ \ \
| |/ / / |
|
| | | |
| | | |
| | | |
| | | | |
Based on patches by Brian Brazil and Daniel Rocco.
|
|\ \ \ \
| |/ / /
| | | |
| | | | |
Remove unnecessary test case comment in urllib.parse.py. These are asserted as test cases.
|
| | | |
| | | |
| | | |
| | | | |
as test cases.
|
| | | |
| | | |
| | | |
| | | | |
Patch contributed by Swati Jaiswal.
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | | |
to ASCII replacements. Removed UTF-8 BOM from Misc/NEWS.
Original patch by Chris Angelico.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
extensions.
Patch by Nikolay Bogoychev.
|
| | | | |
|
|/ / /
| | |
| | |
| | | |
Patch by Martin Panter.
|
|\ \ \
| |/ /
| | |
| | | |
Patch from Daniel Andrade Groppe and Peter Lovett
|
| | |
| | |
| | |
| | | |
Patch from Daniel Andrade Groppe and Peter Lovett
|
| | |
| | |
| | |
| | |
| | | |
Patch by samwyse, completed by Arnon Yaari, and reviewed by
Martin Panter.
|
| | | |
|