[issue9742] Python 2.7: math module fails to build on Solaris 9

Mark Dickinson report at bugs.python.org
Tue Nov 23 20:05:30 CET 2010


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

> I *do* get a math module... but it does *not* have a round function.

Not a problem:  the math module isn't supposed to have a round function. :-)

The round function is used as part of the calculations that produce the gamma function.  So if the gamma function is working, then all's well:

>>> from math import gamma
>>> gamma(3.1)
2.197620278392477

----------

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


More information about the Python-bugs-list mailing list