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

Commit

Permalink
object --> SageObject
Browse files Browse the repository at this point in the history
  • Loading branch information
behackl committed Sep 22, 2015
1 parent 1d52f6c commit 3b3b2fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/sage/data_structures/mutable_poset.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,10 @@
# http://www.gnu.org/licenses/
#*****************************************************************************

from sage.structure.sage_object import SageObject

class MutablePosetShell(object):

class MutablePosetShell(SageObject):
r"""
A shell for an element of a :class:`mutable poset <MutablePoset>`.
Expand Down Expand Up @@ -1100,7 +1102,7 @@ def is_MutablePoset(P):
return isinstance(P, MutablePoset)


class MutablePoset(object):
class MutablePoset(SageObject):
r"""
A data structure that models a mutable poset (partially ordered
set).
Expand Down

0 comments on commit 3b3b2fb

Please sign in to comment.