(child, parent)
| 18 | return os.path.abspath(path) |
| 19 | |
| 20 | def is_child_dir(child, parent): |
| 21 | p = os.path.abspath(parent) |
| 22 | c = os.path.abspath(child) |
| 23 | return c.startswith(p) and c != p |
| 24 | |
| 25 | def try_unlink(path): |
| 26 | try: |
no outgoing calls
no test coverage detected
searching dependent graphs…