This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jaraco
Recipients eric.smith, jaraco, serhiy.storchaka
Date 2022-01-08.20:42:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1641674565.28.0.201140333099.issue46304@roundup.psfhosted.org>
In-reply-to
Content
Hi Eric. I did mention that option in my report, but that option requires loading the whole file into memory. I'd like something equivalent to the iterator that `open()` provides, which yields lines lazily.

Serihy, thanks for the feedback. I do indeed not want to rely on the implicit closing of the file handle. I'd instead like a helper function/method that will close the file after the iterator is consumed.

Something like:

def read_lines(path):
    with path.open() as strm:
        yield from strm

What I'm seeking is for that block to be placed somewhere in the stdlib so that I don't have to copy it into every project that needs/wants this behavior.
History
Date User Action Args
2022-01-08 20:42:45jaracosetrecipients: + jaraco, eric.smith, serhiy.storchaka
2022-01-08 20:42:45jaracosetmessageid: <1641674565.28.0.201140333099.issue46304@roundup.psfhosted.org>
2022-01-08 20:42:45jaracolinkissue46304 messages
2022-01-08 20:42:45jaracocreate