[issue13073] message_body argument of HTTPConnection.endheaders is undocumented

2011-10-06 Thread Senthil Kumaran
Senthil Kumaran added the comment: Yes, I agree. I think, it can be clarified at that point too. Because. in 2.7 the string is being checked and in 3.3 the message_body is checked if it's instance of bytes. But, I think, it should be carefully worded (aligned with how other socket message args

[issue13073] message_body argument of HTTPConnection.endheaders is undocumented

2011-10-06 Thread Éric Araujo
Éric Araujo added the comment: It is IMO a source of confusion that the doc talk about a string instead of “a bytes object” (3.x) or “a string (str)” (2.x, unless unicode is supported too). -- nosy: +eric.araujo ___ Python tracker

[issue13073] message_body argument of HTTPConnection.endheaders is undocumented

2011-10-05 Thread Senthil Kumaran
Senthil Kumaran added the comment: I believe, I have addressed all the comments. Closing this report. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue13073] message_body argument of HTTPConnection.endheaders is undocumented

2011-10-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 64fae6f7b64c by Senthil Kumaran in branch '2.7': Issue13073 - Address review comments and add versionchanged information in the docs. http://hg.python.org/cpython/rev/64fae6f7b64c -- ___ Python tracker

[issue13073] message_body argument of HTTPConnection.endheaders is undocumented

2011-10-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset befa7b926aad by Senthil Kumaran in branch '3.2': Issue #13073 - Address the review comments made by Ezio. http://hg.python.org/cpython/rev/befa7b926aad New changeset a7b7ba225de7 by Senthil Kumaran in branch 'default': merge from 3.2. Issue #1307

[issue13073] message_body argument of HTTPConnection.endheaders is undocumented

2011-10-05 Thread Ezio Melotti
Ezio Melotti added the comment: I also left some comments on the review page that should be addressed. -- nosy: +ezio.melotti ___ Python tracker ___

[issue13073] message_body argument of HTTPConnection.endheaders is undocumented

2011-10-05 Thread Petri Lehtinen
Petri Lehtinen added the comment: The 2.7 documentation should mention the version in which the argument was added. I believe it was 2.7. -- resolution: fixed -> status: closed -> open ___ Python tracker ___

[issue13073] message_body argument of HTTPConnection.endheaders is undocumented

2011-10-02 Thread Senthil Kumaran
Senthil Kumaran added the comment: This is fixed the following changesets. changeset a3f2dba93743 changeset 1ed413b52af3 changeset 277688052c5a Thanks for the patch, Ben Hayden. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed _

[issue13073] message_body argument of HTTPConnection.endheaders is undocumented

2011-10-02 Thread Ben Hayden
Ben Hayden added the comment: I added in docs for the method from the actual method docstring from the http.client module. -- keywords: +patch nosy: +beardedp Added file: http://bugs.python.org/file23290/issue13073.patch ___ Python tracker

[issue13073] message_body argument of HTTPConnection.endheaders is undocumented

2011-09-30 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- assignee: docs@python -> orsenthil nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailin

[issue13073] message_body argument of HTTPConnection.endheaders is undocumented

2011-09-30 Thread Petri Lehtinen
New submission from Petri Lehtinen : The argument is essential to avoid slowdown with delayed ACKs and the Nagle algorithm, so it should be documented. It was added when fixing issue 4336. I believe that it's new in Python 2.7. -- assignee: docs@python components: Documentation message