Skip to content

Commit aa0d637

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

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ipykernel/debugger.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,8 +477,11 @@ async def attach(self, message):
477477
'port': port
478478
}
479479
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.
480483
# Set debugOptions for breakpoints in python standard library source.
481-
message['arguments']['debugOptions'] = [ 'DebugStdLib' ]
484+
# message['arguments']['debugOptions'] = [ 'DebugStdLib' ]
482485
return await self._forward_message(message)
483486

484487
async def configurationDone(self, message):

0 commit comments

Comments
 (0)