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 714276c commit 457aefdCopy full SHA for 457aefd
src/sage/combinat/recognizable_series.py
@@ -73,6 +73,7 @@
73
# http://www.gnu.org/licenses/
74
#*****************************************************************************
75
from __future__ import absolute_import
76
+from six import iteritems
77
78
from sage.misc.cachefunc import cached_method
79
from sage.misc.superseded import experimental
@@ -333,7 +334,7 @@ def immutable(m):
333
334
return m
335
336
if isinstance(mu, dict):
- mu = dict((a, immutable(M)) for a, M in mu.iteritems())
337
+ mu = dict((a, immutable(M)) for a, M in iteritems(mu))
338
mu = Family(mu)
339
340
if not mu.is_finite():
0 commit comments