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 MrJean1
Recipients MrJean1, mark.dickinson, terry.reedy
Date 2008-06-28.16:48:09
SpamBayes Score 0.006177614
Marked as misclassified No
Message-id <1214671693.21.0.716349752486.issue3167@psf.upfronthosting.co.za>
In-reply-to
Content
The 32-but results are the same when built with -xO5.

Python 2.6b1 (r26b1:64398, Jun 28 2008, 10:43:53) [C] on sunos5
Type "help", "copyright", "credits" or "license" for more information.
>>> import cmath
>>> cmath.log(100.0)
(4.6051701859880918+0j)
>>> cmath.log(2.0)
(0.69314718055994529+0j)
>>> cmath.log(100.0, 2.0)
(6.6438561897747253+0j)

>>> import math
>>> math.log(float('-inf'))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: math domain error
History
Date User Action Args
2008-06-28 16:48:13MrJean1setspambayes_score: 0.00617761 -> 0.006177614
recipients: + MrJean1, terry.reedy, mark.dickinson
2008-06-28 16:48:13MrJean1setspambayes_score: 0.00617761 -> 0.00617761
messageid: <1214671693.21.0.716349752486.issue3167@psf.upfronthosting.co.za>
2008-06-28 16:48:09MrJean1linkissue3167 messages
2008-06-28 16:48:09MrJean1create