ipykernel
ipykernel copied to clipboard
IPython Kernel for Jupyter
I took the liberty to duplicate @MarkDunne 's issue https://github.com/jupyter/notebook/issues/2023 over, since it appears the problem lies within the IPython kernel and not the Jupyter notebook. To reproduce, simply note...
For https://github.com/jupyterlab/jupyterlab/pull/11566, there is a need to launch the debugger with configuration options, like `justMyCode` documented on https://github.com/microsoft/debugpy/wiki/Debug-configuration-settings I have done a quick scan on how to achieve this, but...
The current handler for "source" requests to the debugger is as follows: https://github.com/ipython/ipykernel/blob/221dca63d7b2e2b8fea32bf8a101d07645fc9d3c/ipykernel/debugger.py#L427-L445 Intuitively, I would expect that the source request would be forwarded to debugpy, so that the [more...
Since `IPyKernel` 6.0.0, in a notebook that call some functions working with some very verbose subprocess and C/C++ library ends up hanging indefinitely. This does not happens with `IPyKernel` 5.5.6,...
When attempting to close an `OutStream` object that was created with `watchfd=True` (the default), the close operation hangs if nothing has been sent to the stream being wrapped. Python code...
Closing an `OutStream` instance via its `close` method fails if that `OutStream` instance is created with `watchfd=False`, with an exception `AttributeError: 'OutStream' object has no attribute 'watch_fd_thread'`. Here's a full...
When `c.IPKernelApp.capture_fd_output` is True (default True) and `c.IPKernelApp.quiet` if False (default True), printing anything causes an infinite output in the cell. `quiet = True` causes outputs to get directed to...
Hi, I'm trying to add an env with: `python -m ipykernel install --name=py38 --prefix=/home/user/` And I get the following error: `ImportError: cannot import name 'filefind' from 'traitlets.utils' (/usr/lib/python3/dist-packages/traitlets/utils/init.py)` After the...
JupyterLab 3.3.0a3 has a kernel sources panel which displays the loaded py files loaded (so the core python libraries, and userland libraries). This aims to offer the user the ability...
I've recently encountered this problem that when my code has an implicit user input request, the Jupiter notebook isn't able to handle it and the kernel just keeps running until...