Re: MultiFile object does not iterate

2005-08-10 Thread Fuzzyman
It has no __iter__ method either. I guess 'next' is just a historical accident. Should be easy enough to wrap it in your own class though and resolve this ? Regards, Fuzzy http://www.voidspace.org.uk/python -- http://mail.python.org/mailman/listinfo/python-list

MultiFile object does not iterate

2005-08-09 Thread David Isaac
Why is a MultiFile object not an iterator? For example if mfp = multifile.MultiFile(fp)I cannot dofor line in mfp: do_somethingRelated:MultiFile.next seems badly named.(Something like next_section would be better.)Is this just historical accident or am I missing the point?Thanks,Alan Isaac -- ht