[issue39224] HTTPConnection.timeout None support
Change by Daniel Farley : -- keywords: +patch pull_requests: +17269 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17843 ___ Python tracker <https://bugs.python.org/issu
[issue39224] HTTPConnection.timeout None support
New submission from Daniel Farley : HTTPConnection's `timeout` argument is passed down to `socket.settimeout()` which supports `None` and puts the socket in blocking mode. This isn't documented on the `http.client` page. Otherwise it should not be allowed. -- assignee: d