We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d8e3ad commit 4d46c69Copy full SHA for 4d46c69
src/flint/flint_base/flint_base.pyx
@@ -1,5 +1,3 @@
1
-from warnings import warn
2
-
3
from flint.flint_base.flint_context cimport thectx
4
5
cdef class flint_elem:
@@ -74,7 +72,7 @@ cdef class flint_poly(flint_elem):
74
72
75
73
acb_poly(input_poly).roots()
76
"""
77
- warn('This method is deprecated. Please instead use acb_poly(input_poly).roots()', DeprecationWarning)
+ raise NotImplementedError('This method has been deprecated. Please instead use acb_poly(input_poly).roots()')
78
79
80
0 commit comments