Skip to content

Commit

Permalink
use a(b), not b.NormalSubgroups()
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Rubey <axiomize@yahoo.de>
  • Loading branch information
dimpase and mantepse authored Oct 4, 2024
1 parent e6717ef commit 08f203e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/libs/gap/element.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2451,7 +2451,7 @@ cdef class GapElement_Function(GapElement):
sage: a = libgap.eval('a')
sage: b = libgap.eval('b')
sage: libgap.collect()
sage: [x.StructureDescription() for x in sorted(b.NormalSubgroups())]
sage: [x.StructureDescription() for x in sorted(a(b))]
["1", "S4", "A4", "C2 x C2"]
Not every ``GapElement`` is callable::
Expand Down

0 comments on commit 08f203e

Please sign in to comment.