##// END OF EJS Templates
Mention new introspection capabilities in What's New document.
Thomas Kluyver -
Show More
@@ -33,7 +33,7 b' ZMQ architecture'
33 33 There is a new GUI framework for IPython, based on a client-server model in
34 34 which multiple clients can communicate with one IPython kernel, using the
35 35 ZeroMQ messaging framework. There is already a Qt console client, which can
36 be started by calling ``ipython-qtconsole``. The protocol is :ref:`documented
36 be started by calling ``ipython qtconsole``. The protocol is :ref:`documented
37 37 <messaging>`.
38 38
39 39 The parallel computing framework has also been rewritten using ZMQ. The
@@ -43,6 +43,10 b' new :mod:`IPython.parallel` module.'
43 43 New features
44 44 ------------
45 45
46 * You can now get help on an object halfway through typing a command. For
47 instance, typing ``a = zip?`` shows the details of :func:`zip`. It also
48 leaves the command at the next prompt so you can carry on with it.
49
46 50 * The input history is now written to an SQLite database. The API for
47 51 retrieving items from the history has also been redesigned.
48 52
@@ -63,7 +67,7 b' New features'
63 67
64 68 * The methods of :class:`~IPython.core.iplib.InteractiveShell` have
65 69 been organized into sections to make it easier to turn more sections
66 of functionality into componenets.
70 of functionality into components.
67 71
68 72 * The embedded shell has been refactored into a truly standalone subclass of
69 73 :class:`InteractiveShell` called :class:`InteractiveShellEmbed`. All
General Comments 0
You need to be logged in to leave comments. Login now