Skip to content

Commit 72a7277

Browse files
author
Matthias Koeppe
committed
sage.rings: Update # needs
1 parent 74641bb commit 72a7277

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/sage/rings/function_field/order_basis.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ def __init__(self, basis, check=True):
7171
7272
TESTS::
7373
74-
sage: # needs sage.rings.finite_rings
74+
sage: # needs sage.rings.finite_rings sage.rings.function_field
7575
sage: K.<x> = FunctionField(GF(7)); R.<y> = K[]
76-
sage: L.<y> = K.extension(y^4 + x*y + 4*x + 1) # needs sage.rings.function_field
77-
sage: O = L.equation_order() # needs sage.rings.function_field
78-
sage: TestSuite(O).run() # needs sage.rings.function_field
76+
sage: L.<y> = K.extension(y^4 + x*y + 4*x + 1)
77+
sage: O = L.equation_order()
78+
sage: TestSuite(O).run()
7979
"""
8080
if len(basis) == 0:
8181
raise ValueError("basis must have positive length")
@@ -361,11 +361,11 @@ def __init__(self, basis, check=True):
361361
362362
TESTS::
363363
364-
sage: # needs sage.rings.finite_rings
364+
sage: # needs sage.rings.finite_rings sage.rings.function_field
365365
sage: K.<x> = FunctionField(GF(7)); R.<y> = K[]
366-
sage: L.<y> = K.extension(y^4 + x*y + 4*x + 1) # needs sage.rings.function_field
367-
sage: O = L.equation_order_infinite() # needs sage.rings.function_field
368-
sage: TestSuite(O).run() # needs sage.rings.function_field
366+
sage: L.<y> = K.extension(y^4 + x*y + 4*x + 1)
367+
sage: O = L.equation_order_infinite()
368+
sage: TestSuite(O).run()
369369
"""
370370
if len(basis) == 0:
371371
raise ValueError("basis must have positive length")

0 commit comments

Comments
 (0)