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 zoupl
Recipients ezio.melotti, zoupl
Date 2012-07-15.01:50:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1342317027.18.0.929395647565.issue15356@psf.upfronthosting.co.za>
In-reply-to
Content
Compile python (from 2.4.6 to version 2.6.8) on solaris 5.10 sparc using gcc 3.4.6. When using UTf-8, the \xa0 is a space. Howeve this is wrong. Version 2.7 is OK.

>>> s = '\xa0'
>>> assert s.strip() == s
>>> import locale
>>> locale.setlocale(locale.LC_ALL, 'en_US.UTF-8')
'en_US.UTF-8'
>>> assert s.strip() == s
History
Date User Action Args
2012-07-15 01:50:27zouplsetrecipients: + zoupl, ezio.melotti
2012-07-15 01:50:27zouplsetmessageid: <1342317027.18.0.929395647565.issue15356@psf.upfronthosting.co.za>
2012-07-15 01:50:26zoupllinkissue15356 messages
2012-07-15 01:50:26zouplcreate