Home
last modified time | relevance | path

Searched refs:yield_lines (Results 1 – 6 of 6) sorted by relevance

/external/python/setuptools/pkg_resources/
D__init__.py1408 return yield_lines(self.get_metadata(name))
1808 return yield_lines(self.get_metadata(name))
2257 def yield_lines(strs): function
2267 for s in yield_lines(ss):
2391 for line in yield_lines(lines):
2920 lines = iter(yield_lines(strs))
3034 for line in yield_lines(s):
/external/python/setuptools/setuptools/command/
Degg_info.py29 safe_version, yield_lines, EntryPoint, iter_entry_points, to_filename)
622 lines = yield_lines(reqs or ())
Deasy_install.py58 yield_lines, normalize_path, resource_string, ensure_directory,
1479 lines = list(yield_lines(f))
1561 for pth in yield_lines(contents):
1584 for path in yield_lines(self.paths):
/external/python/setuptools/pkg_resources/tests/
Dtest_resources.py42 return pkg_resources.yield_lines(self.get_metadata(name))
562 assert list(pkg_resources.yield_lines(inp)) == out
/external/python/setuptools/docs/
Dpkg_resources.txt1318 is short for calling ``yield_lines(provider.get_metadata(name))``. See the
1319 section on `yield_lines()`_ below for more information on the syntax it
1547 ``yield_lines(strs)``
1555 each item is passed recursively to ``yield_lines()``, so that an arbitrarily
1558 a file object or a list of strings to ``yield_lines`` will both work.
1566 input. However, this routine is idempotent, so calling ``yield_lines()``
1567 on the output of another call to ``yield_lines()`` is completely harmless.
1578 This routine uses ``yield_lines()`` as its front end, so you can pass in
1579 anything that ``yield_lines()`` accepts, such as an open text file, string,
Dformats.txt245 is the parsing format defined by the ``yield_lines()`` function of