Skip to content

Commit

Permalink
gh-35010: add doctest for #13569
Browse files Browse the repository at this point in the history
    
Closes #13569.
    
URL: #35010
Reported by: Marc Mezzarobba
Reviewer(s): Edgar Costa, Frédéric Chapoton, roed314
  • Loading branch information
Release Manager committed Feb 21, 2023
2 parents ea2c228 + 57475d3 commit c6508c5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/sage/groups/perm_gps/permgroup_element.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,14 @@ We create element of a permutation group of large degree::
sage: G = SymmetricGroup(30)
sage: s = G(srange(30,0,-1)); s
(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)
TESTS:
Check that :trac:`13569` is fixed::
sage: [g*h for g in SymmetricGroup(3) for h in AlternatingGroup(3)]
[(), (1,2,3), (1,3,2), (1,3,2), (), (1,2,3), (1,2,3), (1,3,2), (), (2,3),
(1,2), (1,3), (1,3), (2,3), (1,2), (1,2), (1,3), (2,3)]
"""

# ****************************************************************************
Expand Down

0 comments on commit c6508c5

Please sign in to comment.