[issue14957] Improve docs for str.splitlines

2012-06-02 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 4d9b3a58e208 by R David Murray in branch '3.2': #14957: fix doc typo. http://hg.python.org/cpython/rev/4d9b3a58e208 New changeset 3bb35ad5d9da by R David Murray in branch 'default': #14957: fix doc typo.

[issue14957] Improve docs for str.splitlines

2012-06-01 Thread Michael Driscoll
Michael Driscoll m...@pythonlibrary.org added the comment: I'm assuming Nick is talking about the stdtypes.rst (in Doc/library) file, correct? If so, I went ahead and created a simple patch that almost uses his verbiage verbatim. -- keywords: +patch nosy: +michael.driscoll Added file:

[issue14957] Improve docs for str.splitlines

2012-06-01 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 24572015e24f by R David Murray in branch '3.2': #14957: clarify splitlines docs. http://hg.python.org/cpython/rev/24572015e24f New changeset 2a43088318ed by R David Murray in branch 'default': #14957: clarify

[issue14957] Improve docs for str.splitlines

2012-06-01 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Thanks. I added an example, too, since split has some. -- nosy: +r.david.murray resolution: - fixed stage: needs patch - committed/rejected status: open - closed type: - behavior ___ Python

[issue14957] Improve docs for str.splitlines

2012-05-31 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- keywords: +easy nosy: +eric.araujo stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14957 ___

[issue14957] Improve docs for str.splitlines

2012-05-29 Thread Nick Coghlan
New submission from Nick Coghlan ncogh...@gmail.com: The docs for str.splitlines() should explain: 1. That it uses the universal newlines approach to splitting lines 2. That unlike str.split() a trailing empty line is *not* included in the resulting list -- assignee: docs@python