[issue14809] Add HTTP status codes introduced by RFC 6585

2012-05-16 Thread Hynek Schlawack
Hynek Schlawack added the comment: Thank you for your contribution to Python, EungJun! Just two small remarks: - Please sign and submit the contributor form from http://www.python.org/psf/contrib/ . You'll get a nice star next to your name in return. :) - I have fixed the flow of one of th

[issue14809] Add HTTP status codes introduced by RFC 6585

2012-05-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 981aabe6ea2f by Hynek Schlawack in branch 'default': #14809: Add HTTP status codes from RFC 6585 to http.server and http.client http://hg.python.org/cpython/rev/981aabe6ea2f -- nosy: +python-dev ___ Pyth

[issue14809] Add HTTP status codes introduced by RFC 6585

2012-05-15 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue14809] Add HTTP status codes introduced by RFC 6585

2012-05-15 Thread EungJun Yi
EungJun Yi added the comment: Hynek, I have fixed them and upload the patch, rfc6585-rev2.patch. -- ___ Python tracker ___ ___ Python

[issue14809] Add HTTP status codes introduced by RFC 6585

2012-05-15 Thread EungJun Yi
Changes by EungJun Yi : Added file: http://bugs.python.org/file25597/rfc6585.patch ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue14809] Add HTTP status codes introduced by RFC 6585

2012-05-15 Thread Hynek Schlawack
Hynek Schlawack added the comment: EungYun, After further research I've found two issue which you should fix before it can be checked in: - The multi-line strings are missing spaces at their line break (429 and 431). - The error codes are documented at http://hg.python.org/cpython/file/26b

[issue14809] Add HTTP status codes introduced by RFC 6585

2012-05-14 Thread Hynek Schlawack
Hynek Schlawack added the comment: I've cross-checked the patch against the RFC and it LGTM. Tests still pass as expected. -- nosy: +hynek stage: -> patch review ___ Python tracker __

[issue14809] Add HTTP status codes introduced by RFC 6585

2012-05-14 Thread EungJun Yi
New submission from EungJun Yi : This patch add HTTP status codes introduced by RFC 6585, to http.client and http.server. 428 Precondition Required 429 Too Many Requests 431 Request Header Fields Too Large 511 Network Authentication Required -- components: Library (Lib) files: rfc6585.