Python 2.4.3
I need to read through some files (can be as large as 10GB). What I need it to do is go through the file until it matches a pattern. Then print that l
You're still matching against line, which doesn't change because you're still in the same iteration of the for loop.