Python Readline End of File

with open('somefile') as openfileobject:
    for line in openfileobject:
        do_something()
Arrogant Ant