class TextIOWrapper():
    def __next__(self):
        return str()

    def __iter__(self):
        yield str()
