Open DetachHead opened 1 month ago
the documentation for requests.request says this:
requests.request
timeout (float or tuple) – (optional) How many seconds to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
however the documentation for the same argument in Session.request does not clarify that it uses seconds:
Session.request
timeout (float or tuple) – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
the documentation for
requests.request
says this:however the documentation for the same argument in
Session.request
does not clarify that it uses seconds: