Merge pull request #2742 from everett-toews/data-arg

Include file-like object in data arg description
This commit is contained in:
Ian Cordasco
2015-08-24 20:44:45 -05:00
+2 -2
View File
@@ -410,8 +410,8 @@ class Session(SessionRedirectMixin):
: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 bytes to send in the body of the
:class:`Request`.
:param data: (optional) Dictionary, bytes, or file-like object to send
in the body of the :class:`Request`.
:param json: (optional) json to send in the body of the
:class:`Request`.
:param headers: (optional) Dictionary of HTTP Headers to send with the