From 6e780fad6d15eea0366103501ed354b92ff28ba7 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 23 Dec 2012 01:16:00 -0500 Subject: [PATCH] remove unused timeout --- requests/models.py | 2 -- 1 file changed, 2 deletions(-) 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): -- 2.7.4