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 maxim_razin
Recipients
Date 2005-12-26.15:03:58
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
string.split(), str.split() and unicode.split() without
parameters break strings by the No-break space (U+00A0)
character.  This character is specially intended not to
be a split border.  

>>> u"Hello\u00A0world".split()
[u'Hello', u'world']
History
Date User Action Args
2007-08-23 14:36:58adminlinkissue1390608 messages
2007-08-23 14:36:58admincreate