Johan Mabille

Results 72 issues of Johan Mabille

This fixes the issue described in https://github.com/jupyter-server/jupyter_server/issues/633

The different `xeus-xxx` kernels instantiate the kernl object the same way, leading to redundant code in these projects. One way to reduce this boilerplate would be to provide a template...

The current implementation of the `interrupt_request` is a no op in `xeus`. However, this behavior depends on the kernelspec and therefore it should be handled by the kernel implementation. This...

Enhancement
Backward Incompatible

As suggested in https://github.com/jupyter/nbclient/pull/142, it would make sense for xeus to provide methods that build the json replies. This would avoid the need to check the protocol for kernel authors.

With the current implementation, a client that connects to a kernel that idles never gets the "idle" message published on IOPub. This can be problematic for clients waiting for such...

This issue tracks the benefits of migrating the codebase to C++17, and its consequences. First we would have to drop the support for the following compilers: - gcc 4.9, 5,...

C++17

Removing the pinning to doctest 2.4.7 in the environment files leads to a compiler crash for clang 6 to 8 (included). We should investigate why and fix the issue (or...

# Checklist - [ ] The title and commit message(s) are descriptive. - [ ] Small commits made to fix your PR have been squashed to avoid history pollution. -...

Spawning many kernerls in a short lapse of time may result in ZMQError because one of the kernel tries to use a port already in use by another kernel. This...