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