#14912: UniqueRepresentation tutorial could use more love
-------------------------------------+-------------------------------------
Reporter: darij | Owner:
Type: defect | Status: needs_work
Priority: major | Milestone: sage-5.13
Component: documentation | Resolution:
Keywords: documentation, | Merged in:
structure | Reviewers: Darij Grinberg,
Authors: Simon King | Travis Scrimshaw
Report Upstream: N/A | Work issues:
Branch: | Commit:
Dependencies: #14888 | Stopgaps:
-------------------------------------+-------------------------------------
Comment (by SimonKing):
I am still shocked that garbage collection works differently in doc tests
than in an interactive session, but anyway: Here is an example that works
both interactively in in a doc test.
{{{
sage: class SomeClass(UniqueRepresentation):
....: def __init__(self, i):
....: print "creating new instance for argument %s"%i
....: self.i = i
....: def __del__(self):
....: print "deleting instance for argument %s"%self.i
....:
sage: O = SomeClass(1)
creating new instance for argument 1
sage: O is SomeClass(1)
True
sage: O is SomeClass(2)
creating new instance for argument 2
deleting instance for argument 2
False
sage: del O
deleting instance for argument 1
sage: O = SomeClass(1)
creating new instance for argument 1
}}}
--
Ticket URL: <http://trac.sagemath.org/ticket/14912#comment:44>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/groups/opt_out.