Re: [sage-devel] Problem calling a base-class cached method from an overridden derived class cached method

2011-12-09 Thread Nicolas M. Thiery
Dear Javier, Thanks for your work on conjugacy classes! On Mon, Dec 05, 2011 at 10:16:20AM -0800, javier wrote: def set(self): from sage.sets.set import Set if self._parent.is_finite(): g = self._representative G = self._parent

[sage-devel] Problem calling a base-class cached method from an overridden derived class cached method

2011-12-05 Thread javier
Hi all, I am trying to clean up, categorify and upload my old code for wrapping GAP conjugacy classes into Sage. Following the suggestion from Nicolas Thiery, I have two main classes ConjugacyClass(Parent) for the generic methods and ConjugacyClassGAP(ConjugacyClass) for wrapping GAP methods. In