debugpy/ptvsd.code-workspace
Pavel Minaev 0ea50467aa Fix #1488: Handling launch (spawn ptvsd) (#1647)
Fix #1605: Debuggee process lifetime management
Mitigate #1637: log.exception() doesn't capture the full stack

Handle "launch" request, parse and validate the debug configuration, and spawn the debuggee process with debug server.

Track debuggee process and its subprocesses, and kill them as needed.

Refactor Singleton and ThreadSafeSingleton to allow for easier synchronization between IDE and server message handlers without excessive locking.

Fix various corner cases and race conditions in disconnect scenarios.

Make log.exception() log the calling stack, not just the exception stack.

Add JSON property validation to MessageDict.

Add --log-stderr switch to the server to enable full logging to stderr.

Add --cls switch to the adapter to reset terminal before logging anything (for convenience when debugging it).

Add some printf-debugging helpers.
2019-07-31 13:05:06 -07:00

20 lines
454 B
Text

{
"folders": [
{
"path": "."
}
],
"settings": {
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.envFile": "${workspaceFolder}/.env",
"python.formatting.provider": "black",
"files.exclude": {
"**/*.pyc": true,
"**/__pycache__": true,
".tox": true,
"src/ptvsd.egg-info": true,
}
},
}