(filename, cache={})
| 632 | |
| 633 | |
| 634 | def _original_file_to_client(filename, cache={}): |
| 635 | try: |
| 636 | return cache[filename] |
| 637 | except KeyError: |
| 638 | translated = _path_to_expected_str(get_path_with_real_case(absolute_path(filename))) |
| 639 | cache[filename] = (translated, False) |
| 640 | return cache[filename] |
| 641 | |
| 642 | |
| 643 | def _original_map_file_to_server(filename): |
nothing calls this directly
no test coverage detected