File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -458,7 +458,7 @@ let testCounter = 0;
458
458
} ) ;
459
459
console . log ( 'step2' ) ;
460
460
const pythonFile = path . join ( debugFilesPath , 'multiThread.py' ) ;
461
- const breakpointLocation = { path : pythonFile , column : 1 , line : 15 } ;
461
+ const breakpointLocation = { path : pythonFile , column : 1 , line : 16 } ;
462
462
await debugClient . setBreakpointsRequest ( {
463
463
lines : [ breakpointLocation . line ] ,
464
464
breakpoints : [ { line : breakpointLocation . line , column : breakpointLocation . column } ] ,
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ def bar():
11
11
12
12
def foo (x ):
13
13
while True :
14
+ print ('step2-{}' .format (threading .current_thread ().getName ()))
14
15
print ("step2-while-loop" )
15
16
bar ()
16
17
print ("step3" )
You can’t perform that action at this time.
0 commit comments