Skip to content

Commit 2f27e8c

Browse files
author
Matthias Koeppe
committed
sage.rings.function_field: Update # needs
1 parent bd8b942 commit 2f27e8c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/sage/rings/function_field/element.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ cdef class FunctionFieldElement(FieldElement):
570570
571571
sage: K.<x> = FunctionField(GF(4)); _.<Y> = K[] # needs sage.rings.finite_rings
572572
sage: L.<y> = K.extension(Y^2 + Y + x + 1/x) # needs sage.rings.finite_rings
573-
sage: (x/y).zeros() # needs sage.modules sage.rings.finite_rings
573+
sage: (x/y).zeros() # needs sage.modules sage.rings.finite_rings sage.rings.function_field
574574
[Place (x, x*y)]
575575
"""
576576
return self.divisor_of_zeros().support()

src/sage/rings/function_field/extensions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
sage: L # needs sage.rings.number_field
1717
Rational function field in x over Number Field in a with defining
1818
polynomial x^2 - 2 with a = 1.4142... over its base
19-
sage: d = (x^2 - 2).divisor() # needs sage.libs.pari
20-
sage: d # needs sage.libs.pari
19+
sage: d = (x^2 - 2).divisor() # needs sage.libs.pari sage.modules
20+
sage: d # needs sage.libs.pari sage.modules
2121
-2*Place (1/x)
2222
+ Place (x^2 - 2)
23-
sage: L.conorm_divisor(d) # needs sage.libs.pari sage.rings.number_field
23+
sage: L.conorm_divisor(d) # needs sage.libs.pari sage.modules sage.rings.number_field
2424
-2*Place (1/x)
2525
+ Place (x - a)
2626
+ Place (x + a)

0 commit comments

Comments
 (0)