[issue4773] HTTPMessage not documented and has inconsistent API across Py2/Py3

2017-04-28 Thread Socob
Changes by Socob <206a8...@opayq.com>: -- nosy: +Socob ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue4773] HTTPMessage not documented and has inconsistent API across Py2/Py3

2015-02-14 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue4773] HTTPMessage not documented and has inconsistent API across Py2/Py3

2015-02-09 Thread Martin Panter
Martin Panter added the comment: Jeremy’s patch appears to have been merged in revision 9eceb618274a. A documentation entry for the HTTPMessage class was also added in 2009, pointing back to email.message.Message. So is there anything left to do for this issue? -- nosy: +vadmium _

[issue4773] HTTPMessage not documented and has inconsistent API across Py2/Py3

2013-03-28 Thread Hugo Lopes Tavares
Hugo Lopes Tavares added the comment: I just caught a bug because on Python 3 `HTTPMessage` has `get_param`, while on Python 2 there is `getparam`, with a different method signature. I am trying to figure out a solution so my code can run in both python 2 and 3 without ifs on python version.

[issue4773] HTTPMessage not documented and has inconsistent API across Py2/Py3

2013-01-08 Thread Piotr Dobrogost
Piotr Dobrogost added the comment: ...continuing my previous comment Joining headers with the same name by ", " by HTTPResponse.getheaders() in Python 2.7 is wrong and there's a bug for this - see http://bugs.python.org/issue1660009 -- ___ Python t

[issue4773] HTTPMessage not documented and has inconsistent API across Py2/Py3

2013-01-08 Thread Piotr Dobrogost
Piotr Dobrogost added the comment: @joel.verhagen "Should HTTPResponse.getheaders() comma-separate the values (...)" No, it should not. RFC 2616 states: "Multiple message-header fields with the same field-name MAY be present in a message if and only if the entire field-value for that header f

[issue4773] HTTPMessage not documented and has inconsistent API across Py2/Py3

2012-03-03 Thread Ezio Melotti
Ezio Melotti added the comment: Yep, #12707. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue4773] HTTPMessage not documented and has inconsistent API across Py2/Py3

2012-03-03 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file13430/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue4773] HTTPMessage not documented and has inconsistent API across Py2/Py3

2012-03-03 Thread Éric Araujo
Éric Araujo added the comment: Now that two Python 3 releases have been made, I don’t know if changing the code is still an option. The doc can certainly still be improved. Adding Ezio to nosy; I think it’s you who opened a bug report about removing superfluous getter methods in the addinfou