c441178 trac #15619: bug in the former definition; exception to avoid it in the future
$ git trac log 15619
commit 0418a3e971872c5a0140cda02e1256905b499fa1
Merge: dd71659 e761346
Date: Sat Jan 4 14:57:56 2014 -1000
Trac #15619: Pickling of immutable graphs
Before
{{{
sage: g=Graph(graphs.PetersenGraph(),immutable=True)
sage: g == loads(dumps(g))
...
TypeError: __cinit__() takes exactly 1 positional argument (0 given)
}}}
After
{{{
sage: g=Graph(graphs.PetersenGraph(),immutable=True)
sage: g == loads(dumps(g))
True
}}}
Reported by: ncohen
Ticket author(s): Nathann Cohen
Reviewer(s): Simon King
commit e761346c888f8ef6f5dd5b43f52b20d23fef500c
Date: Fri Jan 3 14:24:22 2014 +0100
trac #15619: Pickling multigraphs with loops and labels
commit cabc96968cab75cbca1e85f1e8efc7b3c50f85e7
Date: Fri Jan 3 13:44:33 2014 +0100
Trac 15619: Review commit
commit c4411781fa8a64d3e89568069ad85caab47b81d2
Date: Thu Jan 2 21:25:26 2014 +0100
trac #15619: bug in the former definition; exception to avoid it in the future
commit 02293487b6268d373896d4c18b0a41a54ef36acd
Date: Thu Jan 2 11:51:29 2014 +0100
trac #15619: Pickling of immutable graphs