We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1029ae7 commit cd99db8Copy full SHA for cd99db8
src/client/debugger/DebugClients/LocalDebugClient.ts
@@ -122,6 +122,10 @@ export class LocalDebugClient extends DebugClient {
122
this.pyProc.stderr.on("data", error => {
123
// We don't need to display the errors as stderr output is being captured by debugger
124
// and it gets sent out to the debug client
125
+
126
+ // This is necessary so we read the stdout of the python process
127
+ // Else it just keep building up (related to issue #203 and #52)
128
+ let x = 0;
129
});
130
this.pyProc.stdout.on("data", d => {
131
// This is necessary so we read the stdout of the python process
0 commit comments