Re: [Numpy-discussion] chebyshev module

2009-09-29 Thread Robert Kern
On Tue, Sep 29, 2009 at 16:40, Charles R Harris wrote: > Oh, and is it advisable to have a __copy__ (or copy) method? Implement __getstate__ and __setstate__. Both the pickle module and the copy module will use those functions. -- Robert Kern "I have come to believe that the whole world is an

[Numpy-discussion] chebyshev module

2009-09-29 Thread Charles R Harris
Hi all, I'm at the polishing stage on this module and at this point would like some input on the names. Yeah, a bit late ;) As it stands the module emulates the polynomial module in most things with the substitution of cheb for poly and the poly1d equivalent is Cheb1d. There are also a few deviati