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

Function _load_python_helper_lib

pydevd_tracing.py:144–158  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

142
143
144def _load_python_helper_lib():
145 try:
146 # If it's already loaded, just return it.
147 return _load_python_helper_lib.__lib__
148 except AttributeError:
149 pass
150 with _lock:
151 try:
152 return _load_python_helper_lib.__lib__
153 except AttributeError:
154 pass
155
156 lib = _load_python_helper_lib_uncached()
157 _load_python_helper_lib.__lib__ = lib
158 return lib
159
160
161def get_python_helper_lib_filename():

Callers 1

set_trace_to_threadsFunction · 0.85

Calls 1

Tested by

no test coverage detected