[issue28010] http.client.HTTPConnection.putrequest incorrect arguments

2016-09-08 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed versions: +Python 3.6 ___ Python tracker

[issue28010] http.client.HTTPConnection.putrequest incorrect arguments

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset f6b62cf4a436 by Senthil Kumaran in branch '3.5': Issue28010 - Make http.client.HTTPConnection.putrequest documentation consistent with the code. https://hg.python.org/cpython/rev/f6b62cf4a436 New changeset 93c7a893f9b4 by Senthil Kumaran in branch

[issue28010] http.client.HTTPConnection.putrequest incorrect arguments

2016-09-08 Thread Senthil Kumaran
Senthil Kumaran added the comment: This patch fixes this. It makes the documentation consistent with the code. -- keywords: +patch nosy: +orsenthil Added file: http://bugs.python.org/file44479/103351.patch ___ Python tracker

[issue28010] http.client.HTTPConnection.putrequest incorrect arguments

2016-09-08 Thread Martin Panter
Changes by Martin Panter : -- keywords: +easy stage: -> needs patch ___ Python tracker ___

[issue28010] http.client.HTTPConnection.putrequest incorrect arguments

2016-09-07 Thread p0lm
New submission from p0lm: 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 >>>