Skip to content

Commit 017414a

Browse files
author
Matthias Koeppe
committed
Update # needs
1 parent 4d7780b commit 017414a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/sage/matrix/special.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1295,12 +1295,12 @@ def elementary_matrix(arg0, arg1=None, **kwds):
12951295
Full MatrixSpace of 4 by 4 dense matrices over
12961296
Number Field in I with defining polynomial x^2 + 1 with I = 1*I
12971297
1298-
sage: # needs sage.rings.complex_double
1298+
sage: # needs sage.rings.complex_double sage.symbolic
12991299
sage: E = elementary_matrix(4, row1=1, scale=CDF(I))
13001300
sage: E.parent()
13011301
Full MatrixSpace of 4 by 4 dense matrices over Complex Double Field
13021302
1303-
sage: # needs sage.rings.number_field
1303+
sage: # needs sage.rings.number_field sage.symbolic
13041304
sage: E = elementary_matrix(4, row1=1, scale=QQbar(I))
13051305
sage: E.parent()
13061306
Full MatrixSpace of 4 by 4 dense matrices over Algebraic Field

src/sage/stats/basic_stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def mean(v):
7979
NaN
8080
sage: mean([I, sqrt(2), 3/5]) # needs sage.symbolic
8181
1/3*sqrt(2) + 1/3*I + 1/5
82-
sage: mean([RIF(1.0103,1.0103), RIF(2)])
82+
sage: mean([RIF(1.0103,1.0103), RIF(2)]) # needs sage.rings.real_interval_field
8383
1.5051500000000000?
8484
sage: mean(range(4))
8585
3/2

0 commit comments

Comments
 (0)