On 10/31/05, Simon Roses Femerling <[EMAIL PROTECTED]> wrote:
> I'm looking for a linked list class or lib ? Any suggestions ?

I'm not sure anyone would bother making one for Python. Why do you
feel that you need one?

Are dictionaries and lists not enough? Can you not simply make one via
references in a class?

class MyNode(object):
   next = None

Should do it, no?

Mike

--
Michael P. Soulier <[EMAIL PROTECTED]>
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to