Simon King wrote: > Wouldn't it be better to [...] or change the > arithmetic operations by *avoiding* a call to __init__()?
That's what the branch I pointed to tries to do, to some extent at least. But the structure of generic polynomial classes (with many operations implemented in an abstract a base class, then a Cython subclass for the generic dense data structure, and a hierarchy of Python sub-subclasses that uses multiple inheritance) doesn't make it easy to avoid the calls to __init__() entirely without deeper changes. -- Marc -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
