Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Reference related CPython issue
  • Loading branch information
skirpichev committed Mar 13, 2026
commit f1c031f76b15d9eea6cbb3732e1c26e3079df1c1
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def bench_decimal_factorial():
c.Emin = decimal.MIN_EMIN
data = [10000, 100000]
else:
# Workaround for python/cpython#140036 (PyPy uses pure-Python Decimal's)
c.prec = 20000 # Should be enough to hold largest factorial exactly.
data = [1000, 5000]

Expand Down
Loading