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 skrah
Recipients ggenellina, retoo, robin.stocker, skrah
Date 2010-02-13.13:35:15
SpamBayes Score 8.152288e-06
Marked as misclassified No
Message-id <1266068176.39.0.00457464183307.issue5125@psf.upfronthosting.co.za>
In-reply-to
Content
As an aside, I would not use atof(). Better use something like:

char *end;

f = strtod(input, &end);
if (*end != '\0') {
    PyErr_Format(PyExc_ValueError, "Could not convert: %s", end);
    return NULL;
}


I've two questions:

1) Does the problem still appear in Python3.1 or Python3.2?

2) What is the output of:
>>> import locale
>>> locale.setlocale(locale.LC_ALL)
History
Date User Action Args
2010-02-13 13:36:16skrahsetrecipients: + skrah, ggenellina, robin.stocker, retoo
2010-02-13 13:36:16skrahsetmessageid: <1266068176.39.0.00457464183307.issue5125@psf.upfronthosting.co.za>
2010-02-13 13:35:16skrahlinkissue5125 messages
2010-02-13 13:35:15skrahcreate