[issue5865] mathmodule.c fails to compile due to missing math_log1p() function

Mark Dickinson report at bugs.python.org
Tue Apr 28 16:02:12 CEST 2009


Mark Dickinson <dickinsm at gmail.com> added the comment:

math_log1p should be produced by the line

FUNC1(log1p, log1p, 1, ...

FUNC1 is a macro that (in this instance) creates the math_log1p function.

The original error message that you posted seems to say that it's log1p
that's undeclared, not math_log1p.

It's strange that log1p isn't being picked up.

What's your operating system?

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue5865>
_______________________________________


More information about the Python-bugs-list mailing list