#12664: add pickling tests in matrix0.pyx
---------------------------+------------------------------------------------
Reporter: kcrisman | Owner: was
Type: enhancement | Status: new
Priority: minor | Milestone: sage-5.0
Component: pickling | Keywords: matrix pickle
Work_issues: | Upstream: N/A
Reviewer: | Author:
Merged: | Dependencies:
---------------------------+------------------------------------------------
In #12585 it was noticed that matrix0.pyx has
{{{
def unpickle(cls, parent, mutability, cache, data, version):
r"""
Unpickle a matrix. This is only used internally by Sage. Users
should never call this function directly.
EXAMPLES: We illustrating saving and loading several different
types of matrices.
OVER `\ZZ`::
sage: A = matrix(ZZ,2,range(4))
sage: loads(dumps(A)) # indirect doctest
[0 1]
[2 3]
Sparse OVER `\QQ`:
Dense over `\QQ[x,y]`:
Dense over finite field.
"""
}}}
which is ... incomplete? Or if these are elsewhere in the doc, we can
just remove those.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/12664>
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 post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.