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 jmgillet
Recipients jmgillet
Date 2007-11-19.10:51:01
SpamBayes Score 0.007201792
Marked as misclassified No
Message-id <1195469464.23.0.231198567798.issue1461@psf.upfronthosting.co.za>
In-reply-to
Content
The result is actually undefined, as x**0 gives 1 and 0**x gives 0.

Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> 1**0
1
>>> 0**1
0
>>> 0**0
1
History
Date User Action Args
2007-11-19 10:51:04jmgilletsetspambayes_score: 0.00720179 -> 0.007201792
recipients: + jmgillet
2007-11-19 10:51:04jmgilletsetspambayes_score: 0.00720179 -> 0.00720179
messageid: <1195469464.23.0.231198567798.issue1461@psf.upfronthosting.co.za>
2007-11-19 10:51:03jmgilletlinkissue1461 messages
2007-11-19 10:51:03jmgilletcreate