Skip to content

Commit 57475d3

Browse files
committed
add doctest for #13569
1 parent 698001b commit 57475d3

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/sage/groups/perm_gps/permgroup_element.pyx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,14 @@ We create element of a permutation group of large degree::
8686
sage: G = SymmetricGroup(30)
8787
sage: s = G(srange(30,0,-1)); s
8888
(1,30)(2,29)(3,28)(4,27)(5,26)(6,25)(7,24)(8,23)(9,22)(10,21)(11,20)(12,19)(13,18)(14,17)(15,16)
89+
90+
TESTS:
91+
92+
Check that :trac:`13569` is fixed::
93+
94+
sage: [g*h for g in SymmetricGroup(3) for h in AlternatingGroup(3)]
95+
[(), (1,2,3), (1,3,2), (1,3,2), (), (1,2,3), (1,2,3), (1,3,2), (), (2,3),
96+
(1,2), (1,3), (1,3), (2,3), (1,2), (1,2), (1,3), (2,3)]
8997
"""
9098

9199
# ****************************************************************************

0 commit comments

Comments
 (0)