John J. Lee wrote: > class Klass: > > def _makeLoudNoise(self, *blah): > ... > > woof = _makeLoudNoise > > [...] > > At least in 2.3 (and 2.4, AFAIK), you can't pickle classes that do > this.
Works for me: Python 2.3.5 (#2, May 4 2005, 08:51:39) [GCC 3.3.5 (Debian 1:3.3.5-12)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import pickle >>> class Foo: ... def foo(self): ... print "Hello, world!" ... bar = foo ... >>> pickle.dumps(Foo) 'c__main__\nFoo\np0\n.' >>> pickle.dumps(Foo()) '(i__main__\nFoo\np0\n(dp1\nb.' -- http://mail.python.org/mailman/listinfo/python-list