[issue15803] Incorrect docstring on ConfigParser.items()

2012-12-30 Thread Łukasz Langa
Changes by Łukasz Langa : -- resolution: -> fixed stage: patch review -> committed/rejected ___ Python tracker ___ ___ Python-bugs-li

[issue15803] Incorrect docstring on ConfigParser.items()

2012-12-30 Thread Łukasz Langa
Łukasz Langa added the comment: Patch committed. Thanks for your report, Nathan. -- status: open -> closed ___ Python tracker ___ ___

[issue15803] Incorrect docstring on ConfigParser.items()

2012-12-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 850503a117a9 by Łukasz Langa in branch '3.2': Fixes issue #15803: incorrect `ConfigParser.items()` docstring http://hg.python.org/cpython/rev/850503a117a9 New changeset cc277b25eae7 by Łukasz Langa in branch '3.3': Merged fix for #15803 from 3.2 htt

[issue15803] Incorrect docstring on ConfigParser.items()

2012-09-11 Thread Łukasz Langa
Changes by Łukasz Langa : -- assignee: -> lukasz.langa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue15803] Incorrect docstring on ConfigParser.items()

2012-08-29 Thread Nathan Trapuzzano
Nathan Trapuzzano added the comment: Looks like the file has about an equal number of single- and double-spaces after periods. -- ___ Python tracker ___

[issue15803] Incorrect docstring on ConfigParser.items()

2012-08-29 Thread Chris Jerdonek
Chris Jerdonek added the comment: > If the double space is used elsewhere in the same document, You can see one above the change in the patch file. -- ___ Python tracker ___ ___

[issue15803] Incorrect docstring on ConfigParser.items()

2012-08-29 Thread Ezio Melotti
Ezio Melotti added the comment: While I like to have two spaces after the period, this convenction is not enforced, and it usually depends on the style used in the file. If the double space is used elsewhere in the same document, then it should be preserved, otherwise using a single space is OK

[issue15803] Incorrect docstring on ConfigParser.items()

2012-08-29 Thread Chris Jerdonek
Chris Jerdonek added the comment: This is a nit, but there should be two spaces after the period: +each option in the section. Otherwise, return a list of tuples with -- nosy: +cjerdonek ___ Python tracker

[issue15803] Incorrect docstring on ConfigParser.items()

2012-08-29 Thread R. David Murray
Changes by R. David Murray : -- stage: -> patch review type: enhancement -> behavior ___ Python tracker ___ ___ Python-bugs-list mail

[issue15803] Incorrect docstring on ConfigParser.items()

2012-08-29 Thread R. David Murray
Changes by R. David Murray : -- nosy: +lukasz.langa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue15803] Incorrect docstring on ConfigParser.items()

2012-08-28 Thread Nathan Trapuzzano
New submission from Nathan Trapuzzano: The docstring on ConfigParser.items() is self-evidently bass ackwards. Fix is in attached patch. -- components: Library (Lib) files: cpython.patch keywords: patch messages: 169324 nosy: nbtrap priority: normal severity: normal status: open title: I