From 283b231f90451600f840d6db03afc64c8ed7dc4f 2011-11-26 17:15:36 From: Thomas Kluyver <takowl@gmail.com> Date: 2011-11-26 17:15:36 Subject: [PATCH] Refine What's New docs. --- diff --git a/docs/source/whatsnew/development.txt b/docs/source/whatsnew/development.txt index c209071..d9a3c77 100644 --- a/docs/source/whatsnew/development.txt +++ b/docs/source/whatsnew/development.txt @@ -18,18 +18,18 @@ New features can start it with the command ``ipython notebook``. See :ref:`the Notebook docs <htmlnotebook>` for technical details. +* **Tabbed QtConsole**: The QtConsole now supports starting multiple kernels in + tabs, and has a menubar, so it looks and behaves more like a real application. + Keyboard enthusiasts can disable the menubar with ctrl-shift-M (:ghpull:`887`). + * **Python 3 compatibility**: IPython can now be installed from a single codebase on Python 2 and Python 3. The installation process for Python 3 - automatically runs 2to3. Python 3 no longer loads a separate 'python3' - profile by default. It uses the same 'default' profile as in Python 2. + automatically runs 2to3. The same 'default' profile is now used for + Python 2 and 3 (the previous version had a separate 'python3' profile). * **PyPy support**: The terminal interface to IPython now runs under `PyPy <http://pypy.org/>`_. -* **Tabbed QtConsole**: The QtConsole now supports starting multiple kernels in - tabs, and has a menubar, so it looks and behaves more like a real application. - Keyboard enthusiasts can disable the menubar with ctrl-shift-M (:ghpull:`887`). - * **SSH Tunnels**: In 0.11, the :mod:`IPython.parallel` Client could tunnel its connections to the Controller via ssh. Now, the QtConsole :ref:`supports <ssh_tunnels>` ssh tunneling, as do parallel engines.