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 sgala
Recipients sgala
Date 2008-08-19.19:11:03
SpamBayes Score 3.942076e-05
Marked as misclassified No
Message-id <1219173065.49.0.835954949015.issue3603@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2008-08-19 19:11:05sgalasetrecipients: + sgala
2008-08-19 19:11:05sgalasetmessageid: <1219173065.49.0.835954949015.issue3603@psf.upfronthosting.co.za>
2008-08-19 19:11:04sgalalinkissue3603 messages
2008-08-19 19:11:03sgalacreate