(path)
| 136 | |
| 137 | |
| 138 | def _adjust_to_current_path(path): |
| 139 | # type: (str) -> str |
| 140 | for current_path, final_path in _PATH_MAPPINGS.items(): |
| 141 | if path.startswith(final_path): |
| 142 | return current_path + path[len(final_path) :] |
| 143 | return path |
| 144 | |
| 145 | |
| 146 | class PythonIdentity(object): |