Skip to content

Commit a4d3a85

Browse files
committed
Remove imports until they're ready
1 parent 3ab97f6 commit a4d3a85

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

src/flint/acb_poly.pyx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
from flint._global_context cimport getprec, getcap
2-
from flint.flint_base.flint_base cimport flint_poly
1+
from flint._global_context cimport getprec
2+
# TODO: waiting for fix on the roots method, currently
3+
# globally defined.
4+
# from flint.flint_base.flint_base cimport flint_poly
35

46
cdef acb_poly_coerce_operands(x, y):
57
if isinstance(y, (int, long, float, complex, fmpz, fmpq, arb, acb, fmpz_poly, fmpq_poly, arb_poly)):

src/flint/arb_poly.pyx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
from flint._global_context cimport getprec, getcap
2-
from flint.flint_base.flint_base cimport flint_poly
1+
from flint._global_context cimport getprec
2+
# TODO: waiting for fix on the roots method, currently
3+
# globally defined.
4+
# from flint.flint_base.flint_base cimport flint_poly
35

46
cdef arb_poly_coerce_operands(x, y):
57
if isinstance(y, (int, long, float, fmpz, fmpq, arb, fmpz_poly, fmpq_poly)):

src/flint/fmpq_poly.pyx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
from flint.flint_base.flint_base cimport flint_poly
1+
# TODO: waiting for fix on the roots method, currently
2+
# globally defined.
3+
# from flint.flint_base.flint_base cimport flint_poly
24

35
cdef any_as_fmpq_poly(obj):
46
if typecheck(obj, fmpq_poly):

src/flint/fmpz_poly.pyx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
from cpython.version cimport PY_MAJOR_VERSION
22

3-
from flint._global_context cimport getprec, getcap
4-
from flint.flint_base.flint_base cimport flint_poly
3+
from flint._global_context cimport getprec
4+
# TODO: waiting for fix on the roots method, currently
5+
# globally defined.
6+
# from flint.flint_base.flint_base cimport flint_poly
57

68
cdef any_as_fmpz_poly(x):
79
cdef fmpz_poly res

src/flint/nmod_poly.pyx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
from flint.flint_base.flint_base cimport flint_poly
1+
# TODO: waiting for fix on the roots method, currently
2+
# globally defined.
3+
# from flint.flint_base.flint_base cimport flint_poly
24

35
cdef any_as_nmod_poly(obj, nmod_t mod):
46
cdef nmod_poly r

0 commit comments

Comments
 (0)