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 aa0d637Copy full SHA for aa0d637
ipykernel/debugger.py
@@ -477,8 +477,11 @@ async def attach(self, message):
477
'port': port
478
}
479
message['arguments']['logToFile'] = True
480
+ # Reverts that option for now since it leads to spurious break of the code
481
+ # in ipykernel source and resuming the execution leads to several errors
482
+ # in the kernel.
483
# Set debugOptions for breakpoints in python standard library source.
- message['arguments']['debugOptions'] = [ 'DebugStdLib' ]
484
+ # message['arguments']['debugOptions'] = [ 'DebugStdLib' ]
485
return await self._forward_message(message)
486
487
async def configurationDone(self, message):
0 commit comments