Merge pull request #2984 from rbcarson/httpadapter-maxretries-doc

Remove int type on HTTPAdapter's max_retries argument doc
This commit is contained in:
2016-01-29 21:59:03 -05:00
+1 -1
View File
@@ -65,7 +65,7 @@ class HTTPAdapter(BaseAdapter):
:param pool_connections: The number of urllib3 connection pools to cache.
:param pool_maxsize: The maximum number of connections to save in the pool.
:param int max_retries: The maximum number of retries each connection
:param max_retries: The maximum number of retries each connection
should attempt. Note, this applies only to failed DNS lookups, socket
connections and connection timeouts, never to requests where data has
made it to the server. By default, Requests does not retry failed