Message68864
3 different Python 2.6b1 builds:
1) 64-bit Python 2.6b1 on Solaris 10 built with SUN C (no -xlibmieee):
Python 2.6b1 (r26b1:64398, Jun 19 2008, 20:27:39) [C] on sunos5
Type "help", "copyright", "credits" or "license" for more information.
>>> import cmath
>>> cmath.log(0.01, 0.5)
(0.71244141339823108+2.0556715512777863j)
>>> cmath.log(100.0, 2.0)
(0.71244151439608006-2.0556716794852954j)
2) 32-bit Python 2.6b1 on Solaris 10 built with SUN C -xlibmieee:
Python 2.6b1 (r26b1:64398, Jun 24 2008, 13:50:09) [C] on sunos5
Type "help", "copyright", "credits" or "license" for more information.
>>> import cmath
>>> cmath.log(0.01, 0.5)
(6.6438561897747244-0j)
>>> cmath.log(100.0, 2.0)
(6.6438561897747253+0j)
3) 32-bit Python 2.6b1 on MacOS X 10.4.11 (Intel):
Python 2.6b1 (r26b1:64398, Jun 23 2008, 18:36:08)
[GCC 4.0.1 (Apple Computer, Inc. build 5367)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import cmath
>>> cmath.log(0.01, 0.5)
(6.6438561897747244-0j)
>>> cmath.log(100.0, 2.0)
(6.6438561897747253+0j) |
|
| Date |
User |
Action |
Args |
| 2008-06-27 23:44:04 | MrJean1 | set | spambayes_score: 0.041703 -> 0.041703023 recipients:
+ MrJean1, terry.reedy, mark.dickinson |
| 2008-06-27 23:44:04 | MrJean1 | set | spambayes_score: 0.041703 -> 0.041703 messageid: <[email protected]> |
| 2008-06-27 23:44:03 | MrJean1 | link | issue3168 messages |
| 2008-06-27 23:44:02 | MrJean1 | create | |
|