I just discovered a bug in some of my code, mangling its arguments. The fix would be to deepcopy the argument before working with it. But deepcopy fails (minimal test case):
sage: f = function('f', x) sage: p = piecewise([[(0,1),f]]) sage: deepcopy(p.list()) ... RuntimeError: unknown function 'f' in archive Anyone hit this before? -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org