From 44edfeeb54a2ec1c43376e0201fda38e8c379d48 2014-07-22 17:04:00 From: Thomas Kluyver <takowl@gmail.com> Date: 2014-07-22 17:04:00 Subject: [PATCH] Add more see also entries --- diff --git a/docs/source/development/kernels.rst b/docs/source/development/kernels.rst index 57316dd..4077d3b 100644 --- a/docs/source/development/kernels.rst +++ b/docs/source/development/kernels.rst @@ -70,7 +70,14 @@ stdin socket to prompt the user for textual input. .. seealso:: :doc:`messaging` - Details of the different sockets and the messages that come over them. + Details of the different sockets and the messages that come over them + + `Creating Language Kernels for IPython <http://andrew.gibiansky.com/blog/ipython/ipython-kernels/>`_ + A blog post by the author of `IHaskell <https://github.com/gibiansky/IHaskell>`_, + a Haskell kernel + + `simple_kernel <https://github.com/dsblank/simple_kernel>`_ + A simple example implementation of the kernel machinery in Python .. _kernelspecs: diff --git a/docs/source/development/wrapperkernels.rst b/docs/source/development/wrapperkernels.rst index 5efcbef..e345333 100644 --- a/docs/source/development/wrapperkernels.rst +++ b/docs/source/development/wrapperkernels.rst @@ -10,6 +10,11 @@ This is useful for languages that have Python bindings, such as `Octave where the REPL can be controlled in a tty using `pexpect <http://pexpect.readthedocs.org/en/latest/>`_, such as bash. +.. seealso:: + + `bash_kernel <https://github.com/takluyver/bash_kernel>`_ + A simple kernel for bash, written using this machinery + Required steps --------------