[issue25822] Add docstrings to fields of urllib.parse results

2016-01-14 Thread Swati Jaiswal
Swati Jaiswal added the comment: Thank you Senthil for the improvements, I'll try to make it better next time :) -- ___ Python tracker ___ ___

[issue25822] Add docstrings to fields of urllib.parse results

2016-01-14 Thread Senthil Kumaran
Senthil Kumaran added the comment: Thank you, Swati. I reviewed and committed your patch. I had to make some minor formatting changes while keeping an eye for the maintainability of the module and doc strings. * Moved all the doc strings up to a single place just below the namespaces are de

[issue25822] Add docstrings to fields of urllib.parse results

2016-01-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7bfcb8b75ad9 by Senthil Kumaran in branch 'default': Issue #25822: Add docstrings to the fields of urllib.parse results. https://hg.python.org/cpython/rev/7bfcb8b75ad9 -- nosy: +python-dev ___ Python trac

[issue25822] Add docstrings to fields of urllib.parse results

2016-01-13 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- assignee: -> orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue25822] Add docstrings to fields of urllib.parse results

2015-12-30 Thread Swati Jaiswal
Changes by Swati Jaiswal : Added file: http://bugs.python.org/file41456/iss_25822_4.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue25822] Add docstrings to fields of urllib.parse results

2015-12-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could you please also add docstrings for _DefragResultBase? I agree that there is no need to write tests. -- ___ Python tracker ___ _

[issue25822] Add docstrings to fields of urllib.parse results

2015-12-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: I wouldn't normally write a test for a docstring patch. -- ___ Python tracker ___ ___ Python-bugs

[issue25822] Add docstrings to fields of urllib.parse results

2015-12-13 Thread Swati Jaiswal
Changes by Swati Jaiswal : Added file: http://bugs.python.org/file41300/iss_25822_3.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue25822] Add docstrings to fields of urllib.parse results

2015-12-11 Thread Martin Panter
Martin Panter added the comment: [padding] I left some comments. I wonder if the doc strings are too specific when they mention “request”, “file”, “download”, “page”, etc. Maybe these could just be examples of what the fields are used for (e.g. “The hierarchical path, such as the path to a fil

[issue25822] Add docstrings to fields of urllib.parse results

2015-12-11 Thread Swati Jaiswal
Changes by Swati Jaiswal : Added file: http://bugs.python.org/file41290/iss_25822_2.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue25822] Add docstrings to fields of urllib.parse results

2015-12-11 Thread Berker Peksag
Berker Peksag added the comment: Thanks, Swati. I left a few comments on Rietveld: http://bugs.python.org/review/25822/ A test wouldn't hurt, but you can wait for further review comments to avoid updating tests each time you get a comment. -- nosy: +berker.peksag

[issue25822] Add docstrings to fields of urllib.parse results

2015-12-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +martin.panter, orsenthil stage: needs patch -> patch review ___ Python tracker ___ ___ Python-

[issue25822] Add docstrings to fields of urllib.parse results

2015-12-10 Thread Swati Jaiswal
Swati Jaiswal added the comment: Here is the patch, please review it. Do I need to write any test? -- keywords: +patch Added file: http://bugs.python.org/file41283/iss_25822.patch ___ Python tracker ___

[issue25822] Add docstrings to fields of urllib.parse results

2015-12-10 Thread Swati Jaiswal
Swati Jaiswal added the comment: I can help with this. Should I propose the changes I am going to make before making them or just create the patch? -- nosy: +curioswati ___ Python tracker _

[issue25822] Add docstrings to fields of urllib.parse results

2015-12-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Results of urlsplit() and urlparse() functions in the urllib.parse module are named tuple with a number of fields. Since property docstrings are writable now (issue24064), we can provide docstrings for all these fields. See also issue24878. -- com