Fixed in compile.c and marshal.c
Quote tim: "Python shouldn't be in the business of defining atof"
- #409651 - in Lib/fnmatch.py, make \ in a character group work
+- #119622: compile errors due to redundant atof decls. Removed from
+ Python/compile.c and Python/marshal.c
+
What's New in Python 2.0?
=========================
static PyObject *
parsenumber(struct compiling *co, char *s)
{
- extern double atof(const char *);
char *end;
long x;
double dx;
case TYPE_FLOAT:
{
- extern double atof(const char *);
char buf[256];
double dx;
n = r_byte(p);
#ifndef WITHOUT_COMPLEX
case TYPE_COMPLEX:
{
- extern double atof(const char *);
char buf[256];
Py_complex c;
n = r_byte(p);