Skip to content

Commit 998535f

Browse files
author
Matthias Koeppe
committed
./sage -fixdoctests --only-tags src/sage/rings/finite_rings/integer_mod_ring.py
1 parent 0c390a0 commit 998535f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/sage/rings/finite_rings/integer_mod_ring.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -616,14 +616,14 @@ def multiplicative_subgroups(self):
616616
617617
EXAMPLES::
618618
619-
sage: # needs sage.groups
620-
sage: Integers(5).multiplicative_subgroups() # optional - gap_package_polycyclic
619+
sage: # optional - gap_package_polycyclic, needs sage.groups
620+
sage: Integers(5).multiplicative_subgroups()
621621
((2,), (4,), ())
622-
sage: Integers(15).multiplicative_subgroups() # optional - gap_package_polycyclic
622+
sage: Integers(15).multiplicative_subgroups()
623623
((11, 7), (11, 4), (2,), (11,), (14,), (7,), (4,), ())
624-
sage: Integers(2).multiplicative_subgroups() # optional - gap_package_polycyclic
624+
sage: Integers(2).multiplicative_subgroups()
625625
((),)
626-
sage: len(Integers(341).multiplicative_subgroups()) # optional - gap_package_polycyclic
626+
sage: len(Integers(341).multiplicative_subgroups())
627627
80
628628
629629
TESTS::
@@ -632,7 +632,7 @@ def multiplicative_subgroups(self):
632632
((),)
633633
sage: IntegerModRing(2).multiplicative_subgroups() # needs sage.groups
634634
((),)
635-
sage: IntegerModRing(3).multiplicative_subgroups() # needs sage.groups # optional - gap_package_polycyclic
635+
sage: IntegerModRing(3).multiplicative_subgroups() # optional - gap_package_polycyclic, needs sage.groups
636636
((2,), ())
637637
"""
638638
return tuple(tuple(g.value() for g in H.gens())

0 commit comments

Comments
 (0)