Dino Viehland
Dino Viehland
Yep, initially I was thinking there'd be a debug start/stop msg, but realized that wouldn't work as well. In issue #5 I started thinking this should come via the connection...
The point about additional options is interesting too though... I'm not sure if this extension point exists yet but given that the debugger will be an extension, presumably there needs...
Would that involve moving the event loops onto their own thread and keeping the execution on the main thread? If that's part of the solution it might be that I...
The issue with the debugger is that it does need to block... Consider something simple like: ```python while True: print('hi') ``` If a user hits the pause button, then we're...
It would live in the notebook package. Somewhere in configuration it would specify which protocol to use, and then notebook would spin up the adapter and launch and send JupyterLab...
Yes, although I had originally been thinking that this would apply only to the "run file" case, so whether that's done by registering a kernel or some other sort of...
Done, PR's up here: https://github.com/jupyter/debugger/pull/3
It looks like source mapping & code identity is already there too... The filename for the code that gets generated is: Which includes the execution order and the 1st 12...
Thanks for the bug report! I think there's a couple of things here. First, in `test2.py`, you'll need to let us know what the types are somehow, so you do...
> Is it too much to ask for these to be renamed to `PyUnstable`? I'm happy to defer on that, but would be fine renaming them if that seems better....