| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\ |
|
| |
| |
| |
| | |
Patch by Wojtek Ruszczewski.
|
|\ \
| |/ |
|
| |
| |
| |
| | |
check_hostname parameter
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This auth handler adds the Authorization header to the first
HTTP request rather than waiting for a HTTP 401 Unauthorized
response from the server as the default HTTPBasicAuthHandler
does.
This allows working with websites like https://api.github.com which do
not follow the strict interpretation of RFC, but more the dicta in the
end of section 2 of RFC 2617:
> A client MAY preemptively send the corresponding Authorization
> header with requests for resources in that space without receipt
> of another challenge from the server. Similarly, when a client
> sends a request to a proxy, it may reuse a userid and password in
> the Proxy-Authorization header field without receiving another
> challenge from the proxy server. See section 4 for security
> considerations associated with Basic authentication.
Patch by Matej Cepl.
|
| |
| |
| |
| |
| |
| | |
after changes to issue22118 were submitted.
Patch contributed by Demian Brecht and reviewed by Antoine Pitrou.
|
| |
| |
| |
| |
| |
| | |
as an argument which will then used be for HTTPS connection.
Patch by Alex Gaynor.
|
|\ \
| |/
| |
| | |
response is received. Patch by Martin Panter.
|
| |
| |
| |
| | |
response is received. Patch by Martin Panter.
|
| |
| |
| |
| |
| |
| | |
resolution of relative URLs, rather than RFCs 1808 and 2396.
Patch by Demian Brecht.
|
|\ \
| |/
| |
| | |
Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull.
|
| |
| |
| |
| | |
Initial patch by Sam Bull.
|
|\ \
| |/ |
|
| | |
|
|\ \
| |/
| |
| | |
Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull.
|
| |
| |
| |
| | |
Initial patch by Sam Bull.
|
| |
| |
| |
| | |
class name instead of hardcoded one.
|
|\ \
| |/
| |
| | |
Fix localhost checking in FileHandler. Raised in #21970.
|
| | |
|
|\ \
| |/ |
|
| |
| |
| |
| |
| |
| | |
it (closes #21463)
Patch by Skyler Leigh Amador.
|
|/
|
|
|
|
| |
if/else expression).
Suggested by: Tal Einat
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Repair the broken link to norobots-rfc.txt.
* HTTP response codes >= 500 treated as a failed read rather than as a not
found. Not found means that we can assume the entire site is allowed. A 5xx
server error tells us nothing.
* A successful read() or parse() updates the mtime (which is defined to be "the
time the robots.txt file was last fetched").
* The can_fetch() method returns False unless we've had a read() with a 2xx or
4xx response. This avoids false positives in the case where a user calls
can_fetch() before calling read().
* I don't see any easy way to test this patch without hitting internet
resources that might change or without use of mock objects that wouldn't
provide must reassurance.
|
|
|
|
|
|
| |
facility. Provides a better way to handle file descriptor close.
Address issue #15002 . Patch contributed by Christian Theune.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
base32, ascii85 and base85 codecs in the base64 module, and delay the
initialization of the unquote_to_bytes() table of the urllib.parse module, to
not waste memory if these modules are not used.
|
|\ |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
create SSLContext objects in Python's stdlib module. It provides a single
configuration point and makes use of SSLContext.load_default_certs().
|
| | |
|
| | |
|
|\ \
| |/
| |
| |
| | |
Improve urlencode docstring. Patch by Brian Brazil.
Closes issue #15350
|
| | |
|
| | |
|
| |
| |
| |
| | |
ModuleNotFoundError.
|
|\ \
| |/
| |
| |
| |
| |
| | |
Fix #17967 - Fix related to regression on Windows.
os.path.join(*self.dirs) produces an invalid path on windows.
ftp paths are always forward-slash seperated like this. /pub/dir.
|
| |
| |
| |
| |
| | |
os.path.join(*self.dirs) produces an invalid path on windows.
ftp paths are always forward-slash seperated like this. /pub/dir.
|
|\ \
| |/
| |
| |
| |
| | |
Fix thishost helper funtion in urllib. Returns the ipaddress of localhost when
hostname is resolvable by socket.gethostname for local machine. This all fixes
certain freebsd builtbot failures.
|
| |
| |
| |
| |
| | |
hostname is resolvable by socket.gethostname for local machine. This all fixes
certain freebsd builtbot failures.
|
|\ \
| |/
| |
| |
| |
| | |
Fix #17967: For ftp urls CWD to target instead of hopping to each directory
towards target. This fixes a bug where target is accessible, but parent
directories are restricted.
|
| |
| |
| |
| |
| | |
towards target. This fixes a bug where target is accessible, but parent
directories are restricted.
|
|\ \
| |/
| |
| |
| |
| | |
#17403: urllib.parse.robotparser normalizes the urls before adding to
ruleline. This helps in handling certain types invalid urls in a conservative
manner. Patch contributed by Mher Movsisyan.
|
| |
| |
| |
| | |
This helps in handling certain types invalid urls in a conservative manner.
|
| |
| |
| |
| |
| |
| | |
result under all circumstances.
Document the change of Request.full_url to a property.
|
|\ \
| |/ |
|