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 ericp
Recipients ericp
Date 2009-07-21.20:00:50
SpamBayes Score 0.016209085
Marked as misclassified No
Message-id <1248206451.65.0.201066321826.issue6537@psf.upfronthosting.co.za>
In-reply-to
Content
ActivePython 2.6.1.1 ...
>>> a = u"abc\x0adef"
>>> a.split()
[u'abc', u'def']
>>>

"\x0a" is a non-breaking space. This behavior means we can't
easily use split() to reflow text.
History
Date User Action Args
2009-07-21 20:00:52ericpsetrecipients: + ericp
2009-07-21 20:00:51ericpsetmessageid: <1248206451.65.0.201066321826.issue6537@psf.upfronthosting.co.za>
2009-07-21 20:00:50ericplinkissue6537 messages
2009-07-21 20:00:50ericpcreate