From: Frank Kumro Date: Fri, 13 Jan 2012 03:16:31 +0000 (-0500) Subject: Added prefetch documentation for api X-Git-Tag: v0.9.2~7^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0536e5b708bea4e1ef25930bd7b4a8cfe930d6ce;p=services%2Fpython-requests.git Added prefetch documentation for api --- diff --git a/requests/api.py b/requests/api.py index 40966cf..b7d4158 100644 --- a/requests/api.py +++ b/requests/api.py @@ -32,6 +32,7 @@ def request(method, url, **kwargs): :param session: (optional) A :class:`Session` object to be used for the request. :param config: (optional) A configuration dictionary. :param verify: (optional) if ``True``, the SSL cert will be verified. A CA_BUNDLE path can also be provided. + :param prefetch: (optional) if ``True``, the response content will be immediately downloaded. """ s = kwargs.pop('session') if 'session' in kwargs else sessions.session()