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

Commit 451ac27

Browse files
author
Matthias Koeppe
committed
src/sage/functions/other.py: Remove import from sage.rings.all
1 parent 905e800 commit 451ac27

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/sage/functions/other.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@
2121
from sage.symbolic.function import GinacFunction, BuiltinFunction
2222
from sage.symbolic.expression import Expression, register_symbol, symbol_table
2323
from sage.symbolic.ring import SR
24-
from sage.rings.all import Integer, Rational, RealField, ZZ, ComplexField
24+
from sage.rings.integer import Integer
25+
from sage.rings.integer_ring import ZZ
26+
from sage.rings.rational import Rational
27+
from sage.rings.complex_mpfr import ComplexField
28+
from sage.rings.real_mpfr import RealField
2529
from sage.misc.latex import latex
2630
from sage.structure.element import Element
2731
import math

0 commit comments

Comments
 (0)