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 mark.dickinson
Recipients Doug.Shea, Jerzy.Kozera, mark.dickinson, mhenriq
Date 2010-11-23.19:05:25
SpamBayes Score 0.0030196842
Marked as misclassified No
Message-id <1290539130.07.0.342644565463.issue9742@psf.upfronthosting.co.za>
In-reply-to
Content
> 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
History
Date User Action Args
2010-11-23 19:05:30mark.dickinsonsetrecipients: + mark.dickinson, mhenriq, Doug.Shea, Jerzy.Kozera
2010-11-23 19:05:30mark.dickinsonsetmessageid: <1290539130.07.0.342644565463.issue9742@psf.upfronthosting.co.za>
2010-11-23 19:05:25mark.dickinsonlinkissue9742 messages
2010-11-23 19:05:25mark.dickinsoncreate