Hi,

>> for log in logs:
>>  l = log.getline()
>>  print l
>>
>> This gives me three loglines.  How do I get more?  Other than while True:
>>
> I presume that what you want is to get all lines from each log.

Well... what I want to do is create a single, sorted list by merging a
number of other sorted lists.

> for log in logs:
>     for line in log.getlines():
>         print l

This gives me three lines.

S.
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to