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 Doug.Shea
Recipients Doug.Shea, Jerzy.Kozera, mark.dickinson, mhenriq
Date 2010-11-23.18:37:33
SpamBayes Score 1.8300383e-10
Marked as misclassified No
Message-id <1290537455.6.0.490506275462.issue9742@psf.upfronthosting.co.za>
In-reply-to
Content
It's actually not quite a solution, either. Working your changes into the build process, I *do* get a math module... but it does *not* have a round function.

> python
Python 2.7 (r27, Nov 23 2010, 11:54:39)
[GCC 3.3.2] on sunos5
Type "help", "copyright", "credits" or "license" for more information.
>>> import math;
>>> print math.round(2.5);
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'round'
>>> print math.floor(2.5);
2.0

A step in the right direction, though, I'd think. Thanks.
History
Date User Action Args
2010-11-23 18:37:35Doug.Sheasetrecipients: + Doug.Shea, mark.dickinson, mhenriq, Jerzy.Kozera
2010-11-23 18:37:35Doug.Sheasetmessageid: <1290537455.6.0.490506275462.issue9742@psf.upfronthosting.co.za>
2010-11-23 18:37:33Doug.Shealinkissue9742 messages
2010-11-23 18:37:33Doug.Sheacreate