Skip to content

Commit dc25d4d

Browse files
committed
Fix invalid escape sequence warning
1 parent 627b2bd commit dc25d4d

File tree

1 file changed

+20
-24
lines changed

1 file changed

+20
-24
lines changed

src/sage/functions/special.py

Lines changed: 20 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,5 @@
11
r"""
2-
Miscellaneous Special Functions
3-
4-
AUTHORS:
5-
6-
- David Joyner (2006-13-06): initial version
7-
8-
- David Joyner (2006-30-10): bug fixes to pari wrappers of Bessel
9-
functions, hypergeometric_U
10-
11-
- William Stein (2008-02): Impose some sanity checks.
12-
13-
- David Joyner (2008-04-23): addition of elliptic integrals
14-
15-
- Eviatar Bach (2013): making elliptic integrals symbolic
16-
17-
- Eric Gourgoulhon (2022): add Condon-Shortley phase to spherical harmonics
2+
Miscellaneous special functions
183
194
This module provides easy access to many of Maxima and PARI's
205
special functions.
@@ -104,6 +89,11 @@
10489
10590
and the complete ones are obtained by taking `\phi =\pi/2`.
10691
92+
.. WARNING::
93+
94+
SciPy's versions are poorly documented and seem less
95+
accurate than the Maxima and PARI versions; typically they are limited
96+
by hardware floats precision.
10797
10898
REFERENCES:
10999
@@ -118,16 +108,22 @@
118108
119109
AUTHORS:
120110
121-
- David Joyner and William Stein
111+
- David Joyner (2006-13-06): initial version
122112
123-
Added 16-02-2008 (wdj): optional calls to scipy and replace all
124-
'#random' by '...' (both at the request of William Stein)
113+
- David Joyner (2006-30-10): bug fixes to pari wrappers of Bessel
114+
functions, hypergeometric_U
125115
126-
.. warning::
116+
- William Stein (2008-02): Impose some sanity checks.
117+
118+
- David Joyner (2008-02-16): optional calls to scipy and replace all ``#random`` by ``...``
119+
(both at the request of William Stein)
120+
121+
- David Joyner (2008-04-23): addition of elliptic integrals
122+
123+
- Eviatar Bach (2013): making elliptic integrals symbolic
124+
125+
- Eric Gourgoulhon (2022): add Condon-Shortley phase to spherical harmonics
127126
128-
SciPy's versions are poorly documented and seem less
129-
accurate than the Maxima and PARI versions; typically they are limited
130-
by hardware floats precision.
131127
"""
132128

133129
# ****************************************************************************
@@ -849,7 +845,7 @@ class EllipticF(BuiltinFunction):
849845
- :wikipedia:`Elliptic_integral#Incomplete_elliptic_integral_of_the_first_kind`
850846
"""
851847
def __init__(self):
852-
"""
848+
r"""
853849
EXAMPLES::
854850
855851
sage: loads(dumps(elliptic_f))

0 commit comments

Comments
 (0)