Skip to content

Commit cd99db8

Browse files
committed
Fixes #263
1 parent 1029ae7 commit cd99db8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/client/debugger/DebugClients/LocalDebugClient.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,10 @@ export class LocalDebugClient extends DebugClient {
122122
this.pyProc.stderr.on("data", error => {
123123
// We don't need to display the errors as stderr output is being captured by debugger
124124
// 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;
125129
});
126130
this.pyProc.stdout.on("data", d => {
127131
// This is necessary so we read the stdout of the python process

0 commit comments

Comments
 (0)