[issue42779] Pow compute can only available in python3.7

2020-12-29 Thread Steven D'Aprano
Steven D'Aprano 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 info

[issue42779] Pow compute can only available in python3.7

2020-12-29 Thread minipython
minipython <599192...@qq.com> added the comment: The issue is that if i use function pow(c,e),it can be computed in python37 in 3 minutes.But it cannot be computed in python36 or python39.Without gmpy2 library,i find the bug. -- ___ Python tracker

[issue42779] Pow compute can only available in python3.7

2020-12-29 Thread Steven D'Aprano
Steven D'Aprano added the comment: What error are you getting? Can you demonstrate the error without gmpy2, as that is a third-party library and nothing to do with us. -- nosy: +steven.daprano ___ Python tracker

[issue42779] Pow compute can only available in python3.7

2020-12-29 Thread minipython
New submission from minipython <599192...@qq.com>: The code can only computed based on python 3.7.Python 3.9 and python 3.6 cannot compute the code.It is very strange problem. -- components: C API files: chinarest.py messages: 383969 nosy: minipython priority: normal severity: normal s