On 11 10 ,   10 01 , Donn Ingle <[EMAIL PROTECTED]> wrote:

>
> >     def pop(self):
> >         item = self.list[-1]
> >         del self.list[-1]
> >         return item
>
> Is there some reason you do all that and not a self.list.pop(0)?
>

Hi.
There are no special reasons I do it that way.
Just not familiar with the member function 'pop'.
Thanks for your reminding

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to