New submission from Santiago Gala <[EMAIL PROTECTED]>: file Include/pymath.h has the typo s/doube/double/, hidden by the fact that any sane OS defines copysign:
diff --git a/Include/pymath.h b/Include/pymath.h index a3735c2..7cea9ae 100644 --- a/Include/pymath.h +++ b/Include/pymath.h @@ -19,7 +19,7 @@ functions and constants *Note: PC/pyconfig.h defines copysign as _copysign */ #ifndef HAVE_COPYSIGN -extern double copysign(doube, double); +extern double copysign(double, double); #endif #ifndef HAVE_ACOSH It is both in trunk and py3k ---------- messages: 71465 nosy: sgala severity: normal status: open title: trivial typo in Include/pymath.h type: compile error _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3603> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com