Decimal division get stuck with max_prec precision
The following example can work well on CPython and print 2 as results, however it gets stuck on PyPy
test.py
import decimal
c = decimal.getcontext()
c.prec = decimal.MAX_PREC
i = decimal.Decimal(4)
k = i / 2
print(k)
System: Ubuntu 16.04 PyPy 7.3.5 with GCC 7.3.1 20180303 (Red Hat 7.3.1-5)] on linux