[New-bugs-announce] [issue3603] trivial typo in Include/pymath.h

Santiago Gala report at bugs.python.org
Tue Aug 19 21:11:05 CEST 2008


New submission from Santiago Gala <sgala at apache.org>:

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 <report at bugs.python.org>
<http://bugs.python.org/issue3603>
_______________________________________


More information about the New-bugs-announce mailing list