From 4c60c29ab4ccc1e46f55d71d25c520ce0f8a2b71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Chapoton?= Date: Wed, 10 Jan 2024 11:58:56 +0100 Subject: [PATCH] change back doc of lazy attributes --- src/sage/groups/galois_group_perm.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/sage/groups/galois_group_perm.py b/src/sage/groups/galois_group_perm.py index 06b3ad69c8d..7a640bcfe29 100644 --- a/src/sage/groups/galois_group_perm.py +++ b/src/sage/groups/galois_group_perm.py @@ -41,7 +41,7 @@ def transitive_number(self, algorithm=None, recompute=False): @lazy_attribute def _gens(self): """ - Return the generators of this Galois group as permutations of the roots. + The generators of this Galois group as permutations of the roots. It is important that this be computed lazily, since it is often possible to compute other attributes (such as the order @@ -84,7 +84,7 @@ def __init__(self, field, algorithm=None, names=None, gc_numbering=False): @lazy_attribute def _deg(self): r""" - Return the number of moved points in the permutation representation. + The number of moved points in the permutation representation. This will be the degree of the original number field if `_gc_numbering`` is ``False``, or the degree of the Galois closure otherwise. @@ -112,7 +112,7 @@ def _deg(self): @lazy_attribute def _domain(self): r""" - Return the integers labeling the roots on which this Galois group acts. + The integers labeling the roots on which this Galois group acts. EXAMPLES:: @@ -131,7 +131,7 @@ def _domain(self): @lazy_attribute def _domain_to_gap(self) -> dict: r""" - Return the dictionary implementing the identity (used by PermutationGroup_generic). + The dictionary implementing the identity (used by PermutationGroup_generic). EXAMPLES:: @@ -146,7 +146,7 @@ def _domain_to_gap(self) -> dict: @lazy_attribute def _domain_from_gap(self) -> dict: r""" - Return the dictionary implementing the identity (used by PermutationGroup_generic). + The dictionary implementing the identity (used by PermutationGroup_generic). EXAMPLES::