Skip to content

Commit

Permalink
Fix # needs
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Dec 14, 2023
1 parent 899fdf7 commit 1d77a49
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/sage/groups/matrix_gps/finitely_generated.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,9 @@ def QuaternionMatrixGroupGF3():
elements commonly called `I` and `J`, while `K`
is the product of `I` and `J`. ::
sage: # needs sage.libs.gap
sage: from sage.groups.matrix_gps.finitely_generated import QuaternionMatrixGroupGF3
sage: # needs sage.libs.gap
sage: Q = QuaternionMatrixGroupGF3()
sage: Q.order()
8
Expand All @@ -177,7 +178,7 @@ def QuaternionMatrixGroupGF3():
TESTS::
sage: groups.matrix.QuaternionGF3() # needs sage.modules
sage: groups.matrix.QuaternionGF3()
Matrix group over Finite Field of size 3 with 2 generators (
[1 1] [2 1]
[1 2], [1 1]
Expand Down
2 changes: 1 addition & 1 deletion src/sage/libs/gap/libgap.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ class Gap(Parent):
We gracefully handle the case that the conversion fails (:trac:`18039`)::
sage: F.<a> = GF(9, modulus="first_lexicographic") # needs sage.rings.finite_rings
sage: libgap(Matrix(F, [[a]]))
sage: libgap(Matrix(F, [[a]])) # needs sage.rings.finite_rings
Traceback (most recent call last):
...
NotImplementedError: conversion of (Givaro) finite field element to GAP
Expand Down

0 comments on commit 1d77a49

Please sign in to comment.