(path)
| 36 | os.symlink(source_path, link_path) |
| 37 | |
| 38 | def try_mkdir_r(path): |
| 39 | try: |
| 40 | os.makedirs(path) |
| 41 | except OSError as e: |
| 42 | if e.errno != errno.EEXIST: raise |
| 43 | |
| 44 | def try_rmdir_r(options, path): |
| 45 | path = abspath(path) |
no outgoing calls
no test coverage detected
searching dependent graphs…