Skip to content

Commit d0fbcd9

Browse files
author
Matthias Koeppe
committed
sage.rings: Fix # optional
1 parent 1ca4a47 commit d0fbcd9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/sage/rings/function_field/function_field.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
We next make an extension of the above function field, illustrating
3838
that arithmetic with a tower of three fields is fully supported::
3939
40-
sage: S.<t> = L[] # optional - sage.rings.finite_rings
40+
sage: S.<t> = L[] # optional - sage.rings.finite_rings sage.rings.function_field
4141
sage: M.<t> = L.extension(t^2 - x*y) # optional - sage.rings.finite_rings sage.rings.function_field
4242
sage: M # optional - sage.rings.finite_rings sage.rings.function_field
4343
Function field in t defined by t^2 + 4*x*y
@@ -120,8 +120,8 @@
120120
sage: TestSuite(J).run() # optional - sage.rings.finite_rings
121121
sage: TestSuite(K).run(max_runs=256) # long time (10s) # optional - sage.rings.number_field
122122
sage: TestSuite(L).run(max_runs=8) # long time (25s) # optional - sage.rings.function_field sage.rings.number_field
123-
sage: TestSuite(M).run(max_runs=8) # long time (35s)
124-
sage: TestSuite(N).run(max_runs=8, skip = '_test_derivation') # long time (15s)
123+
sage: TestSuite(M).run(max_runs=8) # long time (35s) # optional - sage.rings.finite_rings sage.rings.function_field
124+
sage: TestSuite(N).run(max_runs=8, skip='_test_derivation') # long time (15s) # optional - sage.rings.finite_rings
125125
sage: TestSuite(O).run() # optional - sage.rings.function_field sage.rings.number_field
126126
sage: TestSuite(R).run()
127127
sage: TestSuite(S).run() # long time (4s) # optional - sage.rings.finite_rings sage.rings.function_field

src/sage/rings/function_field/valuation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
sage: v = K.valuation(x^2 + 1)
108108
sage: L.<x> = FunctionField(GaussianIntegers().fraction_field())
109109
sage: ws = v.extensions(L) # optional - sage.rings.function_field
110-
sage: for w in ws: TestSuite(w).run(max_runs=100) # long time
110+
sage: for w in ws: TestSuite(w).run(max_runs=100) # long time # optional - sage.rings.function_field
111111
112112
Run test suite for a finite place with residual degree and ramification::
113113

0 commit comments

Comments
 (0)