@@ -106,7 +106,7 @@ def post(url, data=None, json=None, **kwargs):
106
106
:param url: URL for the new :class:`Request` object.
107
107
:param data: (optional) Dictionary, list of tuples, bytes, or file-like
108
108
object to send in the body of the :class:`Request`.
109
- :param json: (optional) json data to send in the body of the :class:`Request`.
109
+ :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`.
110
110
:param \*\*kwargs: Optional arguments that ``request`` takes.
111
111
:return: :class:`Response <Response>` object
112
112
:rtype: requests.Response
@@ -121,7 +121,7 @@ def put(url, data=None, **kwargs):
121
121
:param url: URL for the new :class:`Request` object.
122
122
:param data: (optional) Dictionary, list of tuples, bytes, or file-like
123
123
object to send in the body of the :class:`Request`.
124
- :param json: (optional) json data to send in the body of the :class:`Request`.
124
+ :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`.
125
125
:param \*\*kwargs: Optional arguments that ``request`` takes.
126
126
:return: :class:`Response <Response>` object
127
127
:rtype: requests.Response
@@ -136,7 +136,7 @@ def patch(url, data=None, **kwargs):
136
136
:param url: URL for the new :class:`Request` object.
137
137
:param data: (optional) Dictionary, list of tuples, bytes, or file-like
138
138
object to send in the body of the :class:`Request`.
139
- :param json: (optional) json data to send in the body of the :class:`Request`.
139
+ :param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`.
140
140
:param \*\*kwargs: Optional arguments that ``request`` takes.
141
141
:return: :class:`Response <Response>` object
142
142
:rtype: requests.Response
0 commit comments