Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
fixup due to changes in #18587 (coming from #18223)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrenn committed Sep 30, 2015
1 parent 23c9a49 commit 09221f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/rings/asymptotic/growth_group_cartesian.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def __classcall__(cls, *args, **kwds):
sage: GrowthGroup('x^ZZ * y^ZZ') # indirect doctest
Growth Group x^ZZ * y^ZZ
"""
return CartesianProductPosets.__classcall__(cls, *args, **kwds)
return CartesianProductPoset.__classcall__(cls, *args, **kwds)


def __init__(self, sets, category, **kwds):
Expand All @@ -245,7 +245,7 @@ def __init__(self, sets, category, **kwds):
Growth Group x^ZZ * y^ZZ
"""
order = kwds.pop('order')
CartesianProductPosets.__init__(self, sets, category, order, **kwds)
CartesianProductPoset.__init__(self, sets, category, order, **kwds)

vars = sum(iter(factor.variable_names()
for factor in self.cartesian_factors()),
Expand All @@ -271,7 +271,7 @@ def __hash__(self):
sage: hash(GrowthGroup('x^ZZ * y^ZZ')) # indirect doctest, random
-1
"""
return CartesianProductPosets.__hash__(self)
return CartesianProductPoset.__hash__(self)


def _element_constructor_(self, data):
Expand Down

0 comments on commit 09221f0

Please sign in to comment.