Skip to content

Commit 15de625

Browse files
committed
remove experimental warning
1 parent 2dcb679 commit 15de625

File tree

2 files changed

+0
-31
lines changed

2 files changed

+0
-31
lines changed

src/sage/combinat/k_regular_sequence.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,6 @@
66
found, for example, on the :wikipedia:`k-regular_sequence` or in
77
[AS2003]_.
88
9-
10-
.. WARNING::
11-
12-
As this code is experimental, warnings are thrown when a
13-
`k`-regular sequence space is created for the first time in a
14-
session (see :class:`sage.misc.superseded.experimental`).
15-
16-
TESTS::
17-
18-
sage: Seq2 = kRegularSequenceSpace(2, ZZ)
19-
doctest:...: FutureWarning: This class/method/function is
20-
marked as experimental. It, its functionality or its interface
21-
might change without a formal deprecation.
22-
See https://github.com/sagemath/sage/issues/21202 for details.
23-
249
::
2510
2611
sage: import logging

src/sage/combinat/recognizable_series.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,6 @@
2727
In particular, minimization is called before checking if a series is
2828
nonzero.
2929
30-
.. WARNING::
31-
32-
As this code is experimental, warnings are thrown when a
33-
recognizable series space is created for the first time in a
34-
session (see :class:`sage.misc.superseded.experimental`).
35-
36-
TESTS::
37-
38-
sage: Rec = RecognizableSeriesSpace(ZZ, [0, 1])
39-
doctest:...: FutureWarning: This class/method/function is
40-
marked as experimental. It, its functionality or its interface
41-
might change without a formal deprecation.
42-
See https://github.com/sagemath/sage/issues/21202 for details.
43-
4430
4531
Various
4632
=======
@@ -79,7 +65,6 @@
7965
from functools import wraps
8066

8167
from sage.misc.cachefunc import cached_method
82-
from sage.misc.superseded import experimental
8368
from sage.structure.element import ModuleElement
8469
from sage.structure.parent import Parent
8570
from sage.structure.unique_representation import UniqueRepresentation
@@ -1741,7 +1726,6 @@ def __normalize__(cls,
17411726

17421727
return (coefficient_ring, indices, category, minimize_results)
17431728

1744-
@experimental(issue_number=21202)
17451729
def __init__(self, coefficient_ring, indices, category, minimize_results):
17461730
r"""
17471731
See :class:`RecognizableSeriesSpace` for details.

0 commit comments

Comments
 (0)