Re: "private" class attributes

2013-06-27 Thread Alister
On Wed, 26 Jun 2013 23:28:49 -0700, wgtrey wrote: > good question but a very poor reply, you should at least quote SOME of the original post to give context. especially as msg threading in this newsgroup is less than perfect. -- How sharper than a serpent's tooth is a sister's "See?"

Re: "private" class attributes

2013-06-26 Thread wgtrey
good question -- http://mail.python.org/mailman/listinfo/python-list

Re: Pseudo-Private Class Attributes

2007-09-19 Thread Bruno Desthuilliers
Ricardo Aráoz a écrit : > That is self.__attributes > > Been reading about the reasons to introduce them and am a little > concerned. As far as I understand it if you have a class that inherits > from two other classes which have both the same name for an attribute > then you will have a name clas

Re: Pseudo-Private Class Attributes

2007-09-18 Thread Robert Kern
Ricardo Aráoz wrote: > That is self.__attributes > > Been reading about the reasons to introduce them and am a little > concerned. As far as I understand it if you have a class that inherits > from two other classes which have both the same name for an attribute > then you will have a name clash b

Pseudo-Private Class Attributes

2007-09-18 Thread Ricardo Aráoz
That is self.__attributes Been reading about the reasons to introduce them and am a little concerned. As far as I understand it if you have a class that inherits from two other classes which have both the same name for an attribute then you will have a name clash because all instance attributes "w