Kaydet (Commit) 92666d9c authored tarafından Georg Brandl's avatar Georg Brandl

merge with 3.3

...@@ -649,7 +649,7 @@ request using http.client:: ...@@ -649,7 +649,7 @@ request using http.client::
>>> conn = http.client.HTTPConnection("localhost", 8080) >>> conn = http.client.HTTPConnection("localhost", 8080)
>>> conn.request("PUT", "/file", BODY) >>> conn.request("PUT", "/file", BODY)
>>> response = conn.getresponse() >>> response = conn.getresponse()
>>> print(resp.status, response.reason) >>> print(response.status, response.reason)
200, OK 200, OK
.. _httpmessage-objects: .. _httpmessage-objects:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment