MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / _original_file_to_client

Function _original_file_to_client

pydevd_file_utils.py:634–640  ·  view source on GitHub ↗
(filename, cache={})

Source from the content-addressed store, hash-verified

632
633
634def _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
643def _original_map_file_to_server(filename):

Callers

nothing calls this directly

Calls 3

_path_to_expected_strFunction · 0.85
get_path_with_real_caseFunction · 0.85
absolute_pathFunction · 0.85

Tested by

no test coverage detected