forked from sagemath/sage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixup changes to reestablish sagemath#36676
The chain of immediate ancestors of this commit was created by cherry-picking the relevant commits that comprise sagemath#36676. Replaying all these commits (and the necessary conflict resolution) still leaves a non-empty diff when comparing 10.4.beta2 to the previous sagemath#36676 and 10.4.beta3 to that cherry-picked branch. This commit makes sure that the diff is trivial. The changes introduced here were likely introduced in conflict resolution when merging develop into sagemath#36676. I did not replay these conflict resolutions, so I do this here manually.
- Loading branch information
Showing
20 changed files
with
47 additions
and
88 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 was deleted.
Oops, something went wrong.
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
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 was deleted.
Oops, something went wrong.
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,47 +1,5 @@ | ||
""" | ||
Tests for deprecations of imports in global namespace from :trac:`28064`:: | ||
sage: igusa_clebsch_invariants | ||
doctest:warning...: | ||
DeprecationWarning: | ||
Importing igusa_clebsch_invariants from here is deprecated; | ||
please use "from sage.schemes.hyperelliptic_curves.invariants import igusa_clebsch_invariants" instead. | ||
See https://github.com/sagemath/sage/issues/28064 for details. | ||
... | ||
sage: absolute_igusa_invariants_kohel | ||
doctest:warning...: | ||
DeprecationWarning: | ||
Importing absolute_igusa_invariants_kohel from here is deprecated; | ||
please use "from sage.schemes.hyperelliptic_curves.invariants import absolute_igusa_invariants_kohel" instead. | ||
See https://github.com/sagemath/sage/issues/28064 for details. | ||
... | ||
sage: absolute_igusa_invariants_wamelen | ||
doctest:warning...: | ||
DeprecationWarning: | ||
Importing absolute_igusa_invariants_wamelen from here is deprecated; | ||
please use "from sage.schemes.hyperelliptic_curves.invariants import absolute_igusa_invariants_wamelen" instead. | ||
See https://github.com/sagemath/sage/issues/28064 for details. | ||
... | ||
sage: clebsch_invariants | ||
doctest:warning...: | ||
DeprecationWarning: | ||
Importing clebsch_invariants from here is deprecated; | ||
please use "from sage.schemes.hyperelliptic_curves.invariants import clebsch_invariants" instead. | ||
See https://github.com/sagemath/sage/issues/28064 for details. | ||
... | ||
""" | ||
from sage.misc.lazy_import import lazy_import | ||
|
||
from sage.schemes.hyperelliptic_curves.constructor import HyperellipticCurve | ||
from sage.schemes.hyperelliptic_curves.kummer_surface import KummerSurface | ||
lazy_import('sage.schemes.hyperelliptic_curves.invariants', | ||
['igusa_clebsch_invariants', 'absolute_igusa_invariants_kohel', | ||
'absolute_igusa_invariants_wamelen', 'clebsch_invariants'], | ||
deprecation=28064) | ||
from sage.schemes.hyperelliptic_curves.mestre import ( | ||
Mestre_conic, HyperellipticCurve_from_invariants) | ||
from sage.schemes.hyperelliptic_curves import monsky_washnitzer | ||
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