Skip to content

Commit

Permalink
Updating issue/PR number in deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
tscrim authored Apr 4, 2024
1 parent a877e6c commit 3074419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/combinat/sf/sf.py
Original file line number Diff line number Diff line change
Expand Up @@ -975,12 +975,12 @@ def witt(self, coerce_h=None, coerce_e=None, coerce_p=None):
doctest:warning
...
DeprecationWarning: the coerce_* inputs are deprecated and ignored
See https://github.com/sagemath/sage/issues/12345678 for details.
See https://github.com/sagemath/sage/issues/37736 for details.
Symmetric Functions over Rational Field in the Witt basis
"""
if coerce_h is not None or coerce_e is not None or coerce_p is not None:
from sage.misc.superseded import deprecation
deprecation(12345678, "the coerce_* inputs are deprecated and ignored")
deprecation(37736, "the coerce_* inputs are deprecated and ignored")
from . import witt
return witt.SymmetricFunctionAlgebra_witt(self)
w = witt
Expand Down

0 comments on commit 3074419

Please sign in to comment.