This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author SebKL
Recipients SebKL, docs@python
Date 2014-09-22.08:32:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1411374730.07.0.0715795458179.issue22459@psf.upfronthosting.co.za>
In-reply-to
Content
The following example is wrong:
https://docs.python.org/3.4/library/stdtypes.html?highlight=split#str.split

>>> '1,2,3'.split(',', maxsplit=1)
['1', '2 3']

Is actually returning (note the missing , ):
>>> '1,2,3'.split(',', maxsplit=1)
['1', '2,3']
History
Date User Action Args
2014-09-22 08:32:10SebKLsetrecipients: + SebKL, docs@python
2014-09-22 08:32:10SebKLsetmessageid: <1411374730.07.0.0715795458179.issue22459@psf.upfronthosting.co.za>
2014-09-22 08:32:09SebKLlinkissue22459 messages
2014-09-22 08:32:09SebKLcreate