(filename)
| 455 | |
| 456 | # Removes a single file, suppressing exceptions on failure. |
| 457 | def rmfile(filename): |
| 458 | debug_print(f'rmfile({filename})') |
| 459 | if os.path.lexists(filename): |
| 460 | os.remove(filename) |
| 461 | |
| 462 | |
| 463 | def mkdir_p(path): |
no test coverage detected