MCPcopy Create free account
hub / github.com/microsoft/debugpy / _settrace

Function _settrace

src/debugpy/server/api.py:40–47  ·  view source on GitHub ↗
(*args, **kwargs)

Source from the content-addressed store, hash-verified

38
39
40def _settrace(*args, **kwargs):
41 log.debug("pydevd.settrace(*{0!r}, **{1!r})", args, kwargs)
42 # The stdin in notification is not acted upon in debugpy, so, disable it.
43 kwargs.setdefault("notify_stdin", False)
44 try:
45 pydevd.settrace(*args, **kwargs)
46 except Exception:
47 raise
48
49
50def ensure_logging():

Callers 4

listenFunction · 0.85
connectFunction · 0.85
breakpointFunction · 0.85
debug_this_threadFunction · 0.85

Calls 1

setdefaultMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…