Skip to content

Commit

Permalink
add quotes, improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
dimpase committed Oct 9, 2023
1 parent 3950f40 commit 86cc741
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/libs/mpmath/ext_main.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ cdef class Context:
faster and produces more accurate results than the builtin
Python function :func:`sum`.
With squared=True each term is squared, and with absolute=True
With ``squared=True`` each term is squared, and with ``absolute=True``
the absolute value of each term is used.
TESTS ::
Expand Down Expand Up @@ -856,7 +856,7 @@ cdef class Context:
MPF_clear(&sim)
return +unknown
except KeyboardInterrupt:
raise KeyboardInterrupt('Ctlr-C has been pressed')
raise KeyboardInterrupt('Ctrl-C pressed while running fsum')

def fdot(ctx, A, B=None, bint conjugate=False):
r"""
Expand Down

0 comments on commit 86cc741

Please sign in to comment.