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 mankyd
Recipients ezio.melotti, mankyd
Date 2011-11-13.00:45:21
SpamBayes Score 0.0010736093
Marked as misclassified No
Message-id <1321145122.08.0.463222804165.issue13391@psf.upfronthosting.co.za>
In-reply-to
Content
Title pretty much says it all. Simple test case:

>>> len(u' \t\r\n\u200B'.strip())
1

Should be zero.

Same problem in Python3:

>>> len(' \t\r\n\u200B'.strip())
1
History
Date User Action Args
2011-11-13 00:45:22mankydsetrecipients: + mankyd, ezio.melotti
2011-11-13 00:45:22mankydsetmessageid: <1321145122.08.0.463222804165.issue13391@psf.upfronthosting.co.za>
2011-11-13 00:45:21mankydlinkissue13391 messages
2011-11-13 00:45:21mankydcreate