From: Kenneth Reitz Date: Sun, 23 Dec 2012 06:16:00 +0000 (-0500) Subject: remove unused timeout X-Git-Tag: v1.0.4~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e780fad6d15eea0366103501ed354b92ff28ba7;p=services%2Fpython-requests.git remove unused timeout --- diff --git a/requests/models.py b/requests/models.py index b3c9dda..7bbd2b9 100644 --- a/requests/models.py +++ b/requests/models.py @@ -156,7 +156,6 @@ class Request(RequestHooksMixin): :param params: dictionary of URL parameters to append to the URL. :param auth: Auth handler or (user, pass) tuple. :param cookies: dictionary or CookieJar of cookies to attach to this request. - :param timeout: REMOVE REMOVE. :param hooks: dictionary of callback hooks, for internal usage. """ def __init__(self, @@ -168,7 +167,6 @@ class Request(RequestHooksMixin): params=dict(), auth=None, cookies=None, - timeout=None, hooks=None):