forked from microsoft/ptvsd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix microsoft#1706: Multiprocessing via debug adapter
- Loading branch information
Showing
18 changed files
with
803 additions
and
396 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
''' | ||
This module holds the customization settings for the debugger. | ||
''' | ||
from _pydevd_bundle.pydevd_constants import QUOTED_LINE_PROTOCOL | ||
from _pydevd_bundle.pydevd_constants import HTTP_JSON_PROTOCOL | ||
|
||
|
||
class PydevdCustomization(object): | ||
DEFAULT_PROTOCOL = QUOTED_LINE_PROTOCOL | ||
DEFAULT_PROTOCOL = HTTP_JSON_PROTOCOL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.