Steven D'Aprano <steve+pyt...@pearwood.info> added the comment:
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)? ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue42779> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com