(stdlib_root: Path)
| 292 | |
| 293 | |
| 294 | def iter_module_stubs(stdlib_root: Path) -> Iterable[ModuleStubs]: |
| 295 | modules, star_imports = collect_all_stubs(stdlib_root) |
| 296 | resolve_reexports(modules, star_imports) |
| 297 | for mod_qn in sorted(modules.keys()): |
| 298 | yield modules[mod_qn] |
| 299 | |
| 300 | |
| 301 | C_HEADER = """\ |
no test coverage detected