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 terry.scott
Recipients terry.scott
Date 2008-10-13.22:01:30
SpamBayes Score 0.08589816
Marked as misclassified No
Message-id <1223935291.9.0.99017812612.issue4115@psf.upfronthosting.co.za>
In-reply-to
Content
x = "Four score  and seven"
x.split() => ["Four", "score", "and", "seven"] 
x.split(" ") => ["Four", "score", " ", "and", "seven"] 

Probably not a big deal but it seems that it should be consistent. One
of my students spotted it.
History
Date User Action Args
2008-10-13 22:01:32terry.scottsetrecipients: + terry.scott
2008-10-13 22:01:31terry.scottsetmessageid: <1223935291.9.0.99017812612.issue4115@psf.upfronthosting.co.za>
2008-10-13 22:01:30terry.scottlinkissue4115 messages
2008-10-13 22:01:30terry.scottcreate