Skip to content

Commit

Permalink
Disable int to string conversion limit
Browse files Browse the repository at this point in the history
  • Loading branch information
kejcao committed Nov 25, 2023
1 parent 9e2b2c8 commit 810072c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mathics/core/atoms.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import base64
import math
import re
import sys
from typing import Optional, Type, Union

import mpmath
Expand All @@ -29,6 +30,9 @@
)
from mathics.core.systemsymbols import SymbolFullForm, SymbolInfinity, SymbolInputForm

# Disable integer to string conversion length limit.
sys.set_int_max_str_digits(0)

# Imperical number that seems to work.
# We have to be able to match mpmath values with sympy values
COMPARE_PREC = 50
Expand Down

0 comments on commit 810072c

Please sign in to comment.