**iter() can take a callable argument**

For instance:

    def seek_next_line(f):
        for c in iter(lambda: f.read(1),'\n'):
            pass