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

Commit

Permalink
Trac #17693: additional doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
cheuberg committed Sep 23, 2015
1 parent 4774baa commit fe5d2f1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/sage/data_structures/mutable_poset.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,7 @@ def eq(self, other):
sage: P = MP()
sage: from sage.data_structures.mutable_poset import MutablePosetShell
sage: e = MutablePosetShell(P, (1, 2))
sage: f = MutablePosetShell(P, (2, 1))
sage: z = P.null
sage: oo = P.oo
sage: z == z
Expand All @@ -587,6 +588,8 @@ def eq(self, other):
True
sage: e == e
True
sage: e == f
False
sage: z == e
False
sage: e == oo
Expand Down

0 comments on commit fe5d2f1

Please sign in to comment.