()
| 46 | return ch |
| 47 | |
| 48 | def gen_filepaths(): |
| 49 | return (pth for pth in all_filepaths() if pth.find('/.') == -1 and any(pth.endswith(ending) for ending in FILENAME_ENDINGS)) |
| 50 | |
| 51 | def all_filepaths(): |
| 52 | for path, dirlist, filelist in os.walk(TOP): |
no test coverage detected