summaryrefslogtreecommitdiff
path: root/requests/api.py
diff options
context:
space:
mode:
authorMarcos Dione <mdione@grulic.org.ar>2017-03-07 10:34:21 +0100
committerGitHub <noreply@github.com>2017-03-07 10:34:21 +0100
commit2e9e944bc16fcf51b9ec4f8fc2f6161fbd2bb194 (patch)
tree1db45ee86418dc9bb42ae945f003c8e1d62cdd13 /requests/api.py
parent16f6e25176ca8693a4c6aebdc5361ca064e8ef8f (diff)
downloadpython-requests-2e9e944bc16fcf51b9ec4f8fc2f6161fbd2bb194.tar.gz
Removed sentence as suggested.
Fair enough...
Diffstat (limited to 'requests/api.py')
-rw-r--r--requests/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/requests/api.py b/requests/api.py
index 2d8ffdc3..856f0b3a 100644
--- a/requests/api.py
+++ b/requests/api.py
@@ -19,7 +19,7 @@ def request(method, url, **kwargs):
:param method: method for the new :class:`Request` object.
:param url: URL for the new :class:`Request` object.
:param params: (optional) Dictionary or bytes to be sent in the query string for the :class:`Request`.
- :param data: (optional) Dictionary or list of tuples ``[(key, value)]`` (will be form-encoded), bytes, or file-like object to send in the body of the :class:`Request`. The list of tuple version is to allow duplication of fields.
+ :param data: (optional) Dictionary or list of tuples ``[(key, value)]`` (will be form-encoded), bytes, or file-like object to send in the body of the :class:`Request`.
:param json: (optional) json data to send in the body of the :class:`Request`.
:param headers: (optional) Dictionary of HTTP Headers to send with the :class:`Request`.
:param cookies: (optional) Dict or CookieJar object to send with the :class:`Request`.