Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: python-canux/debugpy

Tags

v1.2.1

Toggle v1.2.1's commit message
Provide full string when evaluating clipboard. Fixes microsoft#110

v1.2.0

Toggle v1.2.0's commit message
Fix microsoft#463: Enable overriding "pythonPath" in the launcher

Add "debugLauncherPython" debug config property to customize Python interpreter used to spawn the launcher.

v1.1.0

Toggle v1.1.0's commit message
Fix pydevd_attach_to_process Windows build script to locate VC++ usin…

…g vswhere.

Update pydevd_attach_to_process binaries.

v1.0.0

Toggle v1.0.0's commit message
Add a feature flag for userUnhandled exception filter.

v1.0.0rc2

Toggle v1.0.0rc2's commit message
Gracefully handle missing /dev/tty when setting up process group for …

…the debuggee.

v1.0.0rc1

Toggle v1.0.0rc1's commit message
Fix microsoft#125: Stop Debugging in a "noDebug" session doesn't kill…

… subprocesses

On Windows, run the debuggee in a separate Win32 job, and terminate the job when launcher exits.

On POSIX, run the debuggee in a separate process group (PGID), and kill the entire group when launcher exits.

Improve process tree autokill tests to actually check whether the child process has exited.

1.0.0b12

Toggle 1.0.0b12's commit message
Revert "Sync from pydevd: improve attach to pid (patches by Søren L. …

…Hansen)"

This reverts commit b8e66cb.

v1.0.0b12

Toggle v1.0.0b12's commit message
Revert "Sync from pydevd: improve attach to pid (patches by Søren L. …

…Hansen)"

This reverts commit b8e66cb.

v1.0.0b11

Toggle v1.0.0b11's commit message
Disable "User Uncaught Exceptions" UX.

v1.0.0b10

Toggle v1.0.0b10's commit message
Don't crash if running under CPython debug build. Fixes microsoft#152