(path)
| 133 | # |
| 134 | |
| 135 | def normpath(path): |
| 136 | path = path.replace(os.sep, '/') |
| 137 | if path.startswith('./'): |
| 138 | path = path[2:] |
| 139 | return path |
| 140 | |
| 141 | def get_hash(frompath, topath): |
| 142 | from_hash = sha256_of_file(frompath) |
no test coverage detected