Dear William,
I'm not shure if this is really a python issue of feature,
I cannot reproduce this error message in Python, it's possible to
define a class, create an instance of it and cPickle it all in the
same file,
the problem here is that the function save does not work if it's
executed in a sc
On Feb 6, 2008 9:08 AM, Georg <[EMAIL PROTECTED]> wrote:
>
> Hi,
> using sage-2.10.1 on a Debian Etch system,
> look at the following short file called "example.sage":
>
> class BMV:
>def __init__(self):
> self.l = range(5)
>def write(self):
> save(self, 'foo')
> M = BMV()
>
>