MCPcopy Index your code
hub / github.com/python/cpython / readline_generator

Function readline_generator

Lib/test/test_configparser.py:1523–1528  ·  view source on GitHub ↗

As advised in Doc/library/configparser.rst.

(f)

Source from the content-addressed store, hash-verified

1521
1522
1523def readline_generator(f):
1524 """As advised in Doc/library/configparser.rst."""
1525 line = f.readline()
1526 while line:
1527 yield line
1528 line = f.readline()
1529
1530
1531class ReadFileTestCase(unittest.TestCase):

Callers 1

Calls 1

readlineMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…