This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author p0lm
Recipients docs@python, p0lm
Date 2016-09-07.23:37:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473291430.61.0.706860588682.issue28010@psf.upfronthosting.co.za>
In-reply-to
Content
Currently the arguments for HTTPConnection.putrequest in the http.client documentation are listed as "request, selector, skip_host=False, skip_accept_encoding=False". This does not reflect the correct arguments:
>>> from http.client import HTTPConnection
>>> help(HTTPConnection.putrequest)

putrequest(self, method, url, skip_host=0, skip_accept_encoding=0)
    Send a request to the server.
    
    `method' specifies an HTTP request method, e.g. 'GET'.
    `url' specifies the object being requested, e.g. '/index.html'.
    `skip_host' if True does not add automatically a 'Host:' header
    `skip_accept_encoding' if True does not add automatically an
       'Accept-Encoding:' header

Fix:
Change `request` and `selector` to `method` and `url` respectively.
History
Date User Action Args
2016-09-07 23:37:10p0lmsetrecipients: + p0lm, docs@python
2016-09-07 23:37:10p0lmsetmessageid: <1473291430.61.0.706860588682.issue28010@psf.upfronthosting.co.za>
2016-09-07 23:37:10p0lmlinkissue28010 messages
2016-09-07 23:37:10p0lmcreate