Skip to content

Commit 2d3a9dc

Browse files
committed
Removed DebugStdLib from arguments of attach
1 parent 0ab288f commit 2d3a9dc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ipykernel/debugger.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,8 +477,10 @@ async def attach(self, message):
477477
'port': port
478478
}
479479
message['arguments']['logToFile'] = True
480+
# Reverts that option fo now since it leads to spurious break of the code
481+
# in ipykernel source that cannot resume.
480482
# Set debugOptions for breakpoints in python standard library source.
481-
message['arguments']['debugOptions'] = [ 'DebugStdLib' ]
483+
# message['arguments']['debugOptions'] = [ 'DebugStdLib' ]
482484
return await self._forward_message(message)
483485

484486
async def configurationDone(self, message):

0 commit comments

Comments
 (0)