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 eric.smith
Recipients eric.smith, mark.dickinson, mrabarnett, r.david.murray, skrah
Date 2009-12-02.03:00:17
SpamBayes Score 0.0040313248
Marked as misclassified No
Message-id <1259722821.32.0.771579528098.issue7327@psf.upfronthosting.co.za>
In-reply-to
Content
I can duplicate this on Linux. The difference is the values in the
locale for the separators, specifically,
locale.localeconv()['thousands_sep'].

>>> locale.localeconv()['thousands_sep']
'\xc2\xa0'

The question is: since a struct lconv contains char*s, how to interpret
them? The code in decimal interprets them as ascii, apparently. floats
do the same thing, so this isn't strictly a decimal problem. I'll have
to give it some thought.
History
Date User Action Args
2009-12-02 03:00:23eric.smithsetrecipients: + eric.smith, mark.dickinson, mrabarnett, r.david.murray, skrah
2009-12-02 03:00:21eric.smithsetmessageid: <1259722821.32.0.771579528098.issue7327@psf.upfronthosting.co.za>
2009-12-02 03:00:19eric.smithlinkissue7327 messages
2009-12-02 03:00:17eric.smithcreate