(*paths)
| 104 | |
| 105 | |
| 106 | def makepath(*paths): |
| 107 | dir = os.path.join(*paths) |
| 108 | try: |
| 109 | dir = os.path.abspath(dir) |
| 110 | except OSError: |
| 111 | pass |
| 112 | return dir, os.path.normcase(dir) |
| 113 | |
| 114 | |
| 115 | def abs_paths(): |
no test coverage detected
searching dependent graphs…