(path)
| 62 | os.makedirs(path, exist_ok=True) |
| 63 | |
| 64 | def rmdir(path): |
| 65 | shutil.rmtree(path, ignore_errors=True) |
| 66 | |
| 67 | def cat(iterables): |
| 68 | return list(itertools.chain(*iterables)) |
nothing calls this directly
no outgoing calls
no test coverage detected