##// END OF EJS Templates
Fix ansispan() to ignore stray [0m
Fix ansispan() to ignore stray [0m

File last commit:

r17902:13314c3e
r18191:7098a9e0
Show More
inputhook_extensible.rst
7 lines | 539 B | text/x-rst | RstLexer
/ docs / source / whatsnew / pr / inputhook_extensible.rst
Thomas Kluyver
Add docs about extending GUI integration
r17893 * It's now possible to provide mechanisms to integrate IPython with other event
loops, in addition to the ones we already support. This lets you run GUI code
in IPython with an interactive prompt, and to embed the IPython
Thomas Kluyver
Add note about function deprecations in whatsnew doc
r17902 kernel in GUI applications. See :doc:`/config/eventloops` for details. As part
of this, the direct ``enable_*`` and ``disable_*`` functions for various GUIs
in :mod:`IPython.lib.inputhook` have been deprecated in favour of
:meth:`~.InputHookManager.enable_gui` and :meth:`~.InputHookManager.disable_gui`.