Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/sage/schemes/elliptic_curves/height.py: Remove all-import of infi…
Browse files Browse the repository at this point in the history
…nity
  • Loading branch information
Matthias Koeppe committed Oct 21, 2021
1 parent 58eb1f9 commit bc2d970
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/sage/schemes/elliptic_curves/height.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,13 @@
import math
import bisect

from sage.rings.all import (ZZ, QQ, RR, RDF, RIF, CC, CDF, CIF, infinity)
from sage.rings.integer_ring import ZZ
from sage.rings.rational_field import QQ
from sage.rings.infinity import infinity
from sage.rings.all import RR, RDF, RIF, CC, CDF, CIF

from sage.misc.all import cached_method, cartesian_product_iterator
from sage.misc.cachefunc import cached_method
from sage.misc.all import cartesian_product_iterator
from sage.arith.all import lcm, factorial
from sage.ext.fast_callable import fast_callable
from sage.functions.log import log, exp
Expand Down

0 comments on commit bc2d970

Please sign in to comment.