Skip to content

Commit af66993

Browse files
committed
add missing optional tags, fix linter
1 parent 76bfff8 commit af66993

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

src/sage/rings/laurent_series_ring.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,7 @@ def _magma_init_(self, magma):
425425
sage: S.sage() == R
426426
True
427427
428+
sage: # optional - magma
428429
sage: magma(LaurentSeriesRing(GF(7), 'x')) # needs sage.rings.finite_rings
429430
Laurent series field in x over GF(7)
430431
"""

src/sage/rings/power_series_ring.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,8 @@ def _magma_init_(self, magma):
739739
y
740740
sage: S.sage() == R
741741
True
742-
742+
743+
sage: # optional - magma
743744
sage: magma(PowerSeriesRing(GF(7), 'x')) # needs sage.rings.finite_rings
744745
Power series ring in x over GF(7)
745746
"""

src/sage/rings/puiseux_series_ring.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ def _magma_init_(self, magma):
295295
sage: S.sage() == R
296296
True
297297
298+
sage: # optional - magma
298299
sage: magma(PuiseuxSeriesRing(GF(7), 'x')) # needs sage.rings.finite_rings
299300
Puiseux series field in x over GF(7)
300301
"""

0 commit comments

Comments
 (0)