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 Zero, exarkun, mark.dickinson
Date 2009-06-03.13:30:47
SpamBayes Score 0.0038825984
Marked as misclassified No
Message-id <1244035851.86.0.415821085282.issue6188@psf.upfronthosting.co.za>
In-reply-to
Content
This is not a bug:  Python's operator precedence rules mean that the 
expression

  -6.276479035564047 ** -5.7974497499584849

is treated as:

  -(6.276479035564047 ** -5.7974497499584849).

>>> a = -6.276479035564047
>>> b = -5.7974497499584849
>>> a ** b != -6.276479035564047 ** -5.7974497499584849
True
>>> a ** b == (-6.276479035564047) ** -5.7974497499584849
True
History
Date User Action Args
2009-06-03 13:30:52mark.dickinsonsetrecipients: + mark.dickinson, exarkun, Zero
2009-06-03 13:30:51mark.dickinsonsetmessageid: <1244035851.86.0.415821085282.issue6188@psf.upfronthosting.co.za>
2009-06-03 13:30:48mark.dickinsonlinkissue6188 messages
2009-06-03 13:30:47mark.dickinsoncreate