Skip to content

Commit 48499dc

Browse files
author
Release Manager
committed
sagemathgh-40651: StandardTableaux_residue passes incorrect args on its super().__init__() call So it thinks it has a base ring: ``` sage: T = StandardTableau([[1,2,3],[4,5]]).residue_sequence(3).standard_tableaux() sage: T.base_ring() 3-residue sequence (0,1,2,2,0) with multicharge (0) ``` ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [x] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - sagemath#12345: short description why this is a dependency --> <!-- - sagemath#34567: ... --> URL: sagemath#40651 Reported by: Travis Scrimshaw Reviewer(s): Martin Rubey
2 parents a5f2400 + 7f06e9f commit 48499dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/combinat/tableau_tuple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5077,7 +5077,7 @@ def __init__(self, residue):
50775077
sage: T = StandardTableauTuple([[[6],[7]],[[1,2,3],[4,5]]]).residue_sequence(2,(0,0)).standard_tableaux()
50785078
sage: TestSuite(T).run()
50795079
"""
5080-
super().__init__(residue, category=FiniteEnumeratedSets())
5080+
super().__init__(category=FiniteEnumeratedSets())
50815081
self._level = residue.level()
50825082
self._multicharge = residue.multicharge()
50835083
self._quantum_characteristic = residue.quantum_characteristic()

0 commit comments

Comments
 (0)