forked from sagemath/sage
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Style fixes, 'del lazy_import' split out sagemath#37901
- Loading branch information
Showing
39 changed files
with
191 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
from sage.groups.perm_gps.permgroup_named import (SymmetricGroup, AlternatingGroup, | ||
DihedralGroup, SplitMetacyclicGroup, | ||
SemidihedralGroup, CyclicPermutationGroup, | ||
DiCyclicGroup, TransitiveGroup, | ||
PGL, PSL, PSp, PSU, PGU, | ||
MathieuGroup, KleinFourGroup, QuaternionGroup, | ||
PrimitiveGroup, PrimitiveGroups, | ||
SuzukiGroup, TransitiveGroups, | ||
GeneralDihedralGroup, SmallPermutationGroup) | ||
DihedralGroup, SplitMetacyclicGroup, | ||
SemidihedralGroup, CyclicPermutationGroup, | ||
DiCyclicGroup, TransitiveGroup, | ||
PGL, PSL, PSp, PSU, PGU, | ||
MathieuGroup, KleinFourGroup, QuaternionGroup, | ||
PrimitiveGroup, PrimitiveGroups, | ||
SuzukiGroup, TransitiveGroups, | ||
GeneralDihedralGroup, SmallPermutationGroup) | ||
|
||
from sage.groups.perm_gps.permgroup import PermutationGroup, PermutationGroup_generic, PermutationGroup_subgroup, direct_product_permgroups | ||
|
||
from sage.groups.perm_gps.constructor import PermutationGroupElement | ||
|
||
from sage.groups.perm_gps.permgroup_morphism import (PermutationGroupMorphism as PermutationGroupMap, | ||
PermutationGroupMorphism_im_gens, | ||
PermutationGroupMorphism_id) | ||
PermutationGroupMorphism_im_gens, | ||
PermutationGroupMorphism_id) | ||
PermutationGroupMorphism = PermutationGroupMorphism_im_gens | ||
|
||
from sage.groups.perm_gps.cubegroup import CubeGroup, RubiksCube |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
from sage.misc.lazy_import import lazy_import | ||
from sage.matrix.matrix_space import MatrixSpace | ||
from sage.matrix.constructor import (matrix, Matrix, column_matrix, random_matrix, | ||
diagonal_matrix, identity_matrix, block_matrix, | ||
block_diagonal_matrix, jordan_block, zero_matrix, | ||
ones_matrix, elementary_matrix, companion_matrix) | ||
diagonal_matrix, identity_matrix, block_matrix, | ||
block_diagonal_matrix, jordan_block, zero_matrix, | ||
ones_matrix, elementary_matrix, companion_matrix) | ||
Mat = MatrixSpace | ||
del lazy_import |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
########################################################################### | ||
# Copyright (C) 2007 William Stein <wstein@gmail.com> # | ||
# Distributed under the terms of the GNU General Public License (GPL) # | ||
# http://www.gnu.org/licenses/ # | ||
# https://www.gnu.org/licenses/ # | ||
########################################################################### | ||
|
||
from sage.modular.abvar.constructor import J0, J1, JH, AbelianVariety |
Oops, something went wrong.