Thank you for your answers. I was actually aware of hidden methods being accessible from inside the class, but I somehow gave a bad example... I note the advices that 1. Having to do manual mangling probably reveals some bad structuration, and 2. Instead of do manual mangling, one can usually add a relevant method in the relevant class.

Thanks!
Bruno

P.S.: Well, for number_of_terms in Polynomial_generic_sparse, there is now #18617 ;-)

Le 05/06/2015 09:06, Jeroen Demeyer a écrit :
On 2015-06-04 18:23, Bruno Grenet wrote:
Thus if I implement a method `number_of_terms` in the class
`Polynomial_generic_sparse`, I am tempted to implement the third
solution.
Since this is a class where the attribute is defined, you don't need to mangle anything.

Otherwise, I would say that manual mangling is bad. Two solutions:

(1) rename the attribute __coeffs to _coeffs

(2) make an accessor function
def number_of_terms(self):
    return len(self.__coeffs)


--
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to