We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ab288f commit 2d3a9dcCopy full SHA for 2d3a9dc
ipykernel/debugger.py
@@ -477,8 +477,10 @@ async def attach(self, message):
477
'port': port
478
}
479
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.
482
# Set debugOptions for breakpoints in python standard library source.
- message['arguments']['debugOptions'] = [ 'DebugStdLib' ]
483
+ # message['arguments']['debugOptions'] = [ 'DebugStdLib' ]
484
return await self._forward_message(message)
485
486
async def configurationDone(self, message):
0 commit comments