(*args, **kwargs)
| 38 | |
| 39 | |
| 40 | def _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 | |
| 50 | def ensure_logging(): |
no test coverage detected
searching dependent graphs…