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 serhiy.storchaka
Recipients BreamoreBoy, ajaksu2, georg.brandl, mark.dickinson, rhettinger, serhiy.storchaka, terry.reedy, zseil
Date 2013-01-04.18:12:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1357323167.51.0.511924973952.issue1694663@psf.upfronthosting.co.za>
In-reply-to
Content
This behavior doesn't reproduced more on 2.7 and 3.2+.

>>> class MyInt(int):
...     __pow__ = int.__add__
... 
>>> i = MyInt(42)
>>> i**3
45
History
Date User Action Args
2013-01-04 18:12:47serhiy.storchakasetrecipients: + serhiy.storchaka, georg.brandl, rhettinger, terry.reedy, mark.dickinson, zseil, ajaksu2, BreamoreBoy
2013-01-04 18:12:47serhiy.storchakasetmessageid: <1357323167.51.0.511924973952.issue1694663@psf.upfronthosting.co.za>
2013-01-04 18:12:47serhiy.storchakalinkissue1694663 messages
2013-01-04 18:12:47serhiy.storchakacreate