My own list object

Emile van Sebille emile at fenx.com
Tue Feb 5 11:17:23 EST 2002


"MDK" <mdk at mdk.com> wrote in message
news:a3p01b$186eq8$1 at ID-98166.news.dfncis.de...
> Hello,
>
> I am trying to create my own special type of list object.
>
> However, when I do x.append('yo') it uses Python's append instead of
the one
> from my class.
>
> How can I get it to use my append method?  I have tried def __append__
and
> then called my own class' function but that did not work.  I've played
with
> __getattr__ but that did not help.
>

Call the method append and not __append__?


--

Emile van Sebille
emile at fenx.com

---------




More information about the Python-list mailing list