Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit d2afc44

Browse files
committed
19464: fix bug
1 parent 4198c28 commit d2afc44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/functions/other.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ def __call__(self, x, maximum_bits=20000, hold=False):
464464
except TypeError:
465465
# If we cannot compute a numerical enclosure, leave the
466466
# expression unevaluated.
467-
return BuiltinFunction.__call__(self, SR(x), hold)
467+
return BuiltinFunction.__call__(self, SR(x), hold=hold)
468468
try:
469469
return x_interval.unique_ceil()
470470
except ValueError:
@@ -627,7 +627,7 @@ def __call__(self, x, maximum_bits=20000, hold=False):
627627
except TypeError:
628628
# If we cannot compute a numerical enclosure, leave the
629629
# expression unevaluated.
630-
return BuiltinFunction.__call__(self, SR(x), hold)
630+
return BuiltinFunction.__call__(self, SR(x), hold=hold)
631631
try:
632632
return x_interval.unique_floor()
633633
except ValueError:

0 commit comments

Comments
 (0)