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 steven.daprano
Recipients minipython, steven.daprano
Date 2020-12-29.12:21:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1609244461.07.0.98582309148.issue42779@roundup.psfhosted.org>
In-reply-to
Content
I cannot replicate that. On my computer, I can compute pow(c, e) in approximately two minutes using Python 3.9:


>>> from time import time
>>> t = time(); a = pow(c, e); time()-t
122.07566785812378
>>> math.log10(a)
50473921.44753242


Can you give more information please?

- exact version number used
- OS
- how much memory?
- if you leave pow(c, e) running for 10 minutes, does it complete?
- can you compute pow(c, 10000)? how long does that take?
- how about pow(c, 1000)?
History
Date User Action Args
2020-12-29 12:21:01steven.dapranosetrecipients: + steven.daprano, minipython
2020-12-29 12:21:01steven.dapranosetmessageid: <1609244461.07.0.98582309148.issue42779@roundup.psfhosted.org>
2020-12-29 12:21:01steven.dapranolinkissue42779 messages
2020-12-29 12:21:01steven.dapranocreate