Mark Dickinson <dicki...@gmail.com> added the comment: 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 ---------- nosy: +marketdickinson resolution: -> invalid status: open -> closed _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue6188> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com