#13835: pickle_function, unpickle_function don't handle default arguments 
properly
----------------------------+-----------------------------------------------
       Reporter:  cnassau   |         Owner:  was     
           Type:  defect    |        Status:  new     
       Priority:  major     |     Milestone:  sage-5.6
      Component:  pickling  |    Resolution:          
       Keywords:            |   Work issues:          
Report Upstream:  N/A       |     Reviewers:          
        Authors:            |     Merged in:          
   Dependencies:            |      Stopgaps:          
----------------------------+-----------------------------------------------

Comment (by cnassau):

 Here are a few more failures from #13814 in Sage 5.5.rc0.

    {{{#!python
    sage: f=Family(NonNegativeIntegers(),Partitions) ; f
    Lazy family (Partitions(i))_{i in Non negative integers}
    sage: loads(dumps(f))
    Traceback (most recent call last)
    ...
    ValueError: Cannot pickle code objects from closures

    sage: f=Family(NonNegativeIntegers(),lambda n:Partitions(n))
    sage: g=loads(dumps(f))
    sage: f[5]
    Partitions of the integer 5
    sage: g[5]
    Traceback (most recent call last)
    ...
    NameError: global name 'Partitions' is not defined
    }}}

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/13835#comment:1>
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.

Reply via email to