Mark d. wrote:
How about:

mov = open(afile)
line = mov.readline()
...(process your ':' line)
for line in mov.readlines():
   ...
The problem here is that you read the entire file in in the
call to readlines.

--Scott David Daniels
[EMAIL PROTECTED]

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

Reply via email to