diff options
author | 2016-09-08 14:29:23 -0700 | |
---|---|---|
committer | 2016-09-08 14:29:23 -0700 | |
commit | 10427f44852b6e872034061421a8890902b8f854 (patch) | |
tree | dbdf7d5df2893c8d9f9ff17dbad9f5a69b1c613e /Lib | |
parent | Issue #1602: Windows console doesn't input or print Unicode (PEP 528) (diff) | |
parent | Issue28010 - Make http.client.HTTPConnection.putrequest documentation consist... (diff) | |
download | cpython-10427f44852b6e872034061421a8890902b8f854.tar.gz cpython-10427f44852b6e872034061421a8890902b8f854.tar.bz2 cpython-10427f44852b6e872034061421a8890902b8f854.zip |
[merge from 3.5] - Issue28010 - Make http.client.HTTPConnection.putrequest
documentation consistent with the code.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/http/client.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/http/client.py b/Lib/http/client.py index a1c4ab94825..ad8f4104f4f 100644 --- a/Lib/http/client.py +++ b/Lib/http/client.py @@ -1068,7 +1068,8 @@ class HTTPConnection: # end chunked transfer self.send(b'0\r\n\r\n') - def putrequest(self, method, url, skip_host=0, skip_accept_encoding=0): + def putrequest(self, method, url, skip_host=False, + skip_accept_encoding=False): """Send a request to the server. `method' specifies an HTTP request method, e.g. 'GET'. |