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 mdonolo
Recipients mdonolo, tim.peters
Date 2009-12-17.18:42:54
SpamBayes Score 5.4166505e-11
Marked as misclassified No
Message-id <1261075376.97.0.838897228999.issue7534@psf.upfronthosting.co.za>
In-reply-to
Content
I am not getting the expected result for the ** operator on windows,
python 2.6
I do...
a=float('nan')
b=a*a
then b is nan which is right but if I do 
b = a**2 I get.
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: (33, 'Domain error')

If I do a**2 on ubuntu, python 2.6 I get nan again.
History
Date User Action Args
2009-12-17 18:42:57mdonolosetrecipients: + mdonolo, tim.peters
2009-12-17 18:42:56mdonolosetmessageid: <1261075376.97.0.838897228999.issue7534@psf.upfronthosting.co.za>
2009-12-17 18:42:55mdonololinkissue7534 messages
2009-12-17 18:42:54mdonolocreate