[issue26553] Write HTTP in uppercase

2016-05-27 Thread Martin Panter
Martin Panter added the comment: Thankyou Nathan, and also Anish & Aatish. For the record, it is normally enough to do a patch against the latest (3.6), and any minor conflicts can be sorted out when applying it to 3.5. In this case the 3.5 and 3.6 patches were basically the same. But the sepa

[issue26553] Write HTTP in uppercase

2016-05-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4275181c4229 by Martin Panter in branch '3.5': Issue #26553: Capitalization of HTTP, HTTPS, FTP, and URL https://hg.python.org/cpython/rev/4275181c4229 New changeset 8c92ebcca83f by Martin Panter in branch 'default': Issue #26553: Merge capitalizati

[issue26553] Write HTTP in uppercase

2016-05-26 Thread Nathan Harold
Changes by Nathan Harold : Added file: http://bugs.python.org/file43022/3_fix_2.7.patch ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue26553] Write HTTP in uppercase

2016-05-26 Thread Nathan Harold
Changes by Nathan Harold : Added file: http://bugs.python.org/file43021/3_fix_3.5.patch ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue26553] Write HTTP in uppercase

2016-05-26 Thread Nathan Harold
Nathan Harold added the comment: The 2_fix* patches were unfortunately slightly broken because an unrelated revision to xmlrpc.client.rst changed one of the lines the patch files were using as an anchor (by adding a period to the end). I've uploaded the 3_fix* series, which addresses this. Th

[issue26553] Write HTTP in uppercase

2016-03-19 Thread Aatish Neupane
Changes by Aatish Neupane : Added file: http://bugs.python.org/file42202/2_fix_3.5.patch ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue26553] Write HTTP in uppercase

2016-03-19 Thread Aatish Neupane
Changes by Aatish Neupane : Added file: http://bugs.python.org/file42197/fix_2.7.patch ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue26553] Write HTTP in uppercase

2016-03-19 Thread Aatish Neupane
Changes by Aatish Neupane : Added file: http://bugs.python.org/file42198/fix_3.5.patch ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue26553] Write HTTP in uppercase

2016-03-19 Thread Aatish Neupane
Aatish Neupane added the comment: I found some other similar errors with the suggestion from the patch review. I have uploaded the new patches as 2_fix* . -- ___ Python tracker

[issue26553] Write HTTP in uppercase

2016-03-19 Thread Aatish Neupane
Aatish Neupane added the comment: I have attached the patches fixing numerous case errors. -- nosy: +aatishnn ___ Python tracker ___ _

[issue26553] Write HTTP in uppercase

2016-03-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Similar changes could be made in docstrings and comments. But changing error messages can be not safe and could be made only in 3.6. -- ___ Python tracker __

[issue26553] Write HTTP in uppercase

2016-03-19 Thread Aatish Neupane
Changes by Aatish Neupane : Added file: http://bugs.python.org/file42203/2_fix_3.6.patch ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue26553] Write HTTP in uppercase

2016-03-18 Thread Martin Panter
Martin Panter added the comment: The three fix_x.y patches look good to me. I pointed out one more fix on the review. I think there are plenty more similar changes that could be made if somebody wanted to. -- nosy: +martin.panter stage: needs patch -> patch review

[issue26553] Write HTTP in uppercase

2016-03-18 Thread Aatish Neupane
Changes by Aatish Neupane : Added file: http://bugs.python.org/file42201/2_fix_2.7.patch ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue26553] Write HTTP in uppercase

2016-03-18 Thread Aatish Neupane
Changes by Aatish Neupane : Added file: http://bugs.python.org/file42199/fix_3.6.patch ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue26553] Write HTTP in uppercase

2016-03-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: Aatish, please sign the CLA https://www.python.org/psf/contrib/ https://www.python.org/psf/contrib/contrib-form/ -- nosy: +terry.reedy ___ Python tracker _

[issue26553] Write HTTP in uppercase

2016-03-18 Thread Aatish Neupane
Aatish Neupane added the comment: I already did that. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue26553] Write HTTP in uppercase

2016-03-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There are occurrences of "http" in lower case in docstrings and comments. The same for https and ftp (and may be other abbreviations). -- ___ Python tracker

[issue26553] Write HTTP in uppercase

2016-03-14 Thread Anish Shah
Anish Shah added the comment: Patch for urllib and httplib in Python 2 -- keywords: +patch nosy: +anish.shah Added file: http://bugs.python.org/file42159/issue26553.patch ___ Python tracker

[issue26553] Write HTTP in uppercase

2016-03-14 Thread Anish Shah
Anish Shah added the comment: Patch for http.client in Python3 -- Added file: http://bugs.python.org/file42160/issue26553-python3.patch ___ Python tracker ___ ___

[issue26553] Write HTTP in uppercase

2016-03-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could you provide a patch Sudheer? -- keywords: +easy nosy: +serhiy.storchaka stage: -> needs patch versions: +Python 2.7, Python 3.5, Python 3.6 ___ Python tracker

[issue26553] Write HTTP in uppercase

2016-03-13 Thread Sudheer Satyanarayana
New submission from Sudheer Satyanarayana: "The Requests package is recommended for a higher-level http client interface." Change 'http' to uppercase. https://docs.python.org/2/library/httplib.html https://docs.python.org/2/library/urllib.html https://docs.python.org/3/library/http.client.html -