Bug 1405325 - Correct HTTPWireProtocol#send documentation. r=maja_zf draft
authorAndreas Tolfsen <ato@sny.no>
Tue, 03 Oct 2017 16:24:22 +0100
changeset 677232 5739e361fabdb7aaae7e532ce83b59679b56da2c
parent 677231 7bf7f8c0c8cb554c7c5aba0680168f2baa9775f6
child 677233 cc0e99c8b336aad0ba9c9755bd13ffc3a1b39ff0
push id83730
push userbmo:ato@sny.no
push dateTue, 10 Oct 2017 11:48:50 +0000
reviewersmaja_zf
bugs1405325
milestone58.0a1
Bug 1405325 - Correct HTTPWireProtocol#send documentation. r=maja_zf MozReview-Commit-ID: 3ZfXYHOaKRC
testing/web-platform/tests/tools/webdriver/webdriver/transport.py
--- a/testing/web-platform/tests/tools/webdriver/webdriver/transport.py
+++ b/testing/web-platform/tests/tools/webdriver/webdriver/transport.py
@@ -63,25 +63,26 @@ class HTTPWireProtocol(object):
         self._timeout = timeout
 
     def url(self, suffix):
         return urlparse.urljoin(self.url_prefix, suffix)
 
     def send(self, method, uri, body=None, headers=None):
         """Send a command to the remote.
 
-        :param method: "POST" or "GET".
-        :param url: "command part" of the requests URL path
-        :param body: Body of the request.  Defaults to an empty dictionary
-            if ``method`` is "POST".
+        :param method: `GET`, `POST`, or `DELETE`.
+        :param uri: Relative endpoint of the requests URL path.
+        :param body: Body of the request.  Defaults to an empty
+            dictionary if ``method`` is `POST`.
         :param headers: Additional headers to include in the request.
-        :return: an instance of wdclient.Response describing the HTTP response
-            received from the remote end.
+
+        :return: Instance of ``wdclient.Response`` describing the
+            HTTP response received from the remote end.
+
         """
-
         if body is None and method == "POST":
             body = {}
 
         if isinstance(body, dict):
             body = json.dumps(body, cls=ToJsonEncoder)
 
         if isinstance(body, unicode):
             body = body.encode("utf-8")