(path)
| 417 | |
| 418 | |
| 419 | def short_src_path(path): |
| 420 | # Very long: \build\cef55_3.2883.1553.g80bd606_win32\ |
| 421 | find = os.path.basename(CEF_BINARIES_LIBRARIES) |
| 422 | if len(find) > 12: |
| 423 | path = path.replace(find, find[:12] + "*") |
| 424 | path = path.replace(ROOT_DIR, "") |
| 425 | return path |
| 426 | |
| 427 | |
| 428 | def short_dst_path(path): |
no outgoing calls
no test coverage detected