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 belopolsky, mark.dickinson, serhiy.storchaka, steven.daprano, tim.peters
Date 2016-06-20.17:57:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1466445466.96.0.767380256396.issue27353@psf.upfronthosting.co.za>
In-reply-to
Content
For general use I think it would be more useful to make pow() supporting fractions (using as_integer_ration()).

>>> math.pow(1000, fractions.Fraction(2, 3))
100.0
>>> math.pow(100000, decimal.Decimal('0.4'))
100.0
History
Date User Action Args
2016-06-20 17:57:47serhiy.storchakasetrecipients: + serhiy.storchaka, tim.peters, mark.dickinson, belopolsky, steven.daprano
2016-06-20 17:57:46serhiy.storchakasetmessageid: <1466445466.96.0.767380256396.issue27353@psf.upfronthosting.co.za>
2016-06-20 17:57:46serhiy.storchakalinkissue27353 messages
2016-06-20 17:57:46serhiy.storchakacreate