From 623d9e7878895eea4e2f7e263b7fc3f01459a37a Mon Sep 17 00:00:00 2001 From: hootnot Date: Thu, 3 Nov 2016 11:10:59 +0100 Subject: [PATCH] documentation line added for consistency with the post method --- requests/api.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requests/api.py b/requests/api.py index 580b3f35..940c3e61 100644 --- a/requests/api.py +++ b/requests/api.py @@ -115,6 +115,7 @@ def put(url, data=None, **kwargs): :param url: URL for the new :class:`Request` object. :param data: (optional) Dictionary, 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 \*\*kwargs: Optional arguments that ``request`` takes. :return: :class:`Response ` object :rtype: requests.Response @@ -128,6 +129,7 @@ def patch(url, data=None, **kwargs): :param url: URL for the new :class:`Request` object. :param data: (optional) Dictionary, 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 \*\*kwargs: Optional arguments that ``request`` takes. :return: :class:`Response ` object :rtype: requests.Response