From 5e5483081e5f015c12614a9984f0e0c91baf8b21 Mon Sep 17 00:00:00 2001 From: markd Date: Tue, 15 Dec 2015 10:23:03 +0000 Subject: Update py-ipython to 3.2.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit IPython 3.2.1 IPython 3.2.1 is a small bugfix release, primarily for cross-site security fixes in the notebook. Users are strongly encouraged to upgrade immediately. There are also a few small unicode and nbconvert-related fixes. IPython 3.2 IPython 3.2 contains important security fixes. Users are strongly encouraged to upgrade immediately. Highlights: - Address cross-site scripting vulnerabilities CVE-2015-4706, CVE-2015-4707 - A security improvement that set the secure attribute to login cookie to prevent them to be sent over http - Revert the face color of matplotlib axes in the inline backend to not be transparent. - Enable mathjax safe mode by default - Fix XSS vulnerability in JSON error messages - Various widget-related fixes IPython 3.1 Released April 3, 2015 The first 3.x bugfix release, with 33 contributors and 344 commits. This primarily includes bugfixes to notebook layout and focus problems. Highlights: - Various focus jumping and scrolling fixes in the notebook. - Various message ordering and widget fixes in the notebook. - Images in markdown and output are confined to the notebook width. An .unconfined CSS class is added to disable this behavior per-image. The resize handle on output images is removed. - Improved ordering of tooltip content for Python functions, putting the signature at the top. - Fix UnicodeErrors when displaying some objects with unicode reprs on Python 2. - Set the kernel’s working directory to the notebook directory when running nbconvert --execute, so that behavior matches the live notebook. - Allow setting custom SSL options for the tornado server with NotebookApp.ssl_options, and protect against POODLE with default settings by disabling SSLv3. - Fix memory leak in the IPython.parallel Controller on Python 3. Release 3.0 Released February 27, 2015 This is a really big release. Over 150 contributors, and almost 6000 commits in a bit under a year. Support for languages other than Python is greatly improved, notebook UI has been significantly redesigned, and a lot of improvement has happened in the experimental interactive widgets. The message protocol and document format have both been updated, while maintaining better compatibility with previous versions than prior updates. The notebook webapp now enables editing of any text file, and even a web-based terminal (on Unix platforms). 3.x will be the last monolithic release of IPython, as the next release cycle will see the growing project split into its Python-specific and language-agnostic components. Language-agnostic projects (notebook, qtconsole, etc.) will move under the umbrella of the new Project Jupyter name, while Python-specific projects (interactive Python shell, Python kernel, IPython.parallel) will remain under IPython, and be split into a few smaller packages. To reflect this, IPython is in a bit of a transition state. The logo on the notebook is now the Jupyter logo. When installing kernels system-wide, they go in a jupyter directory. We are going to do our best to ease this transition for users and developers. --- devel/py-ipython/ALTERNATIVES | 5 + devel/py-ipython/Makefile | 16 +- devel/py-ipython/PLIST | 1774 ++++++++++++++++++++++++----------------- devel/py-ipython/distinfo | 10 +- 4 files changed, 1047 insertions(+), 758 deletions(-) create mode 100644 devel/py-ipython/ALTERNATIVES diff --git a/devel/py-ipython/ALTERNATIVES b/devel/py-ipython/ALTERNATIVES new file mode 100644 index 00000000000..ea07a1e5990 --- /dev/null +++ b/devel/py-ipython/ALTERNATIVES @@ -0,0 +1,5 @@ +bin/ipcluster @PREFIX@/bin/ipcluster@PYVERSSUFFIX@ +bin/ipcontroller @PREFIX@/bin/ipcontroller@PYVERSSUFFIX@ +bin/ipengine @PREFIX@/bin/ipengine@PYVERSSUFFIX@ +bin/iptest @PREFIX@/bin/iptest@PYVERSSUFFIX@ +bin/ipython @PREFIX@/bin/ipython@PYVERSSUFFIX@ diff --git a/devel/py-ipython/Makefile b/devel/py-ipython/Makefile index 9e3a309ea96..ee1d43f46b5 100644 --- a/devel/py-ipython/Makefile +++ b/devel/py-ipython/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.12 2015/06/12 11:12:19 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2015/12/15 10:23:03 markd Exp $ -DISTNAME= ipython-2.0.0 +DISTNAME= ipython-3.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 4 CATEGORIES= devel lang MASTER_SITES= https://pypi.python.org/packages/source/i/ipython/ @@ -22,8 +21,19 @@ DEPENDS+= ${PYPKGPREFIX}-zmq>=14.0.1:../../net/py-zmq USE_LANGUAGES= # none +PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX} +FILES_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX} + REPLACE_PYTHON= */*/*.py */*/*/*.py +post-install: + mv ${DESTDIR}${PREFIX}/bin/iptest ${DESTDIR}${PREFIX}/bin/iptest${PYVERSSUFFIX} + for f in ipcluster ipcontroller ipengine ipython ; \ + do \ + mv ${DESTDIR}${PREFIX}/bin/$$f ${DESTDIR}${PREFIX}/bin/$${f}${PYVERSSUFFIX}; \ + mv ${DESTDIR}${PREFIX}/man/man1/$${f}.1 ${DESTDIR}${PREFIX}/man/man1/$${f}${PYVERSSUFFIX}.1; \ + done + .include "../../lang/python/distutils.mk" .include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" diff --git a/devel/py-ipython/PLIST b/devel/py-ipython/PLIST index e1bb8c60739..35dc48f3e35 100644 --- a/devel/py-ipython/PLIST +++ b/devel/py-ipython/PLIST @@ -1,662 +1,694 @@ -@comment $NetBSD: PLIST,v 1.4 2014/04/20 13:08:54 imil Exp $ -bin/ipcluster -${PLIST.py3x}bin/ipcluster3 +@comment $NetBSD: PLIST,v 1.5 2015/12/15 10:23:03 markd Exp $ ${PLIST.py2x}bin/ipcluster2 -bin/ipcontroller -${PLIST.py3x}bin/ipcontroller3 +${PLIST.py3x}bin/ipcluster3 +bin/ipcluster${PYVERSSUFFIX} ${PLIST.py2x}bin/ipcontroller2 -bin/ipengine -${PLIST.py3x}bin/ipengine3 +${PLIST.py3x}bin/ipcontroller3 +bin/ipcontroller${PYVERSSUFFIX} ${PLIST.py2x}bin/ipengine2 -bin/iptest -${PLIST.py3x}bin/iptest3 +${PLIST.py3x}bin/ipengine3 +bin/ipengine${PYVERSSUFFIX} ${PLIST.py2x}bin/iptest2 -bin/ipython -${PLIST.py3x}bin/ipython3 +${PLIST.py3x}bin/iptest3 +bin/iptest${PYVERSSUFFIX} ${PLIST.py2x}bin/ipython2 +${PLIST.py3x}bin/ipython3 +bin/ipython${PYVERSSUFFIX} ${PYSITELIB}/IPython/__init__.py -${PYSITELIB}/IPython/__main__.py ${PYSITELIB}/IPython/__init__.pyc ${PYSITELIB}/IPython/__init__.pyo +${PYSITELIB}/IPython/__main__.py ${PYSITELIB}/IPython/__main__.pyc ${PYSITELIB}/IPython/__main__.pyo -${PYSITELIB}/IPython/consoleapp.pyc -${PYSITELIB}/IPython/consoleapp.pyo -${PYSITELIB}/IPython/display.pyc -${PYSITELIB}/IPython/display.pyo -${PYSITELIB}/IPython/frontend.pyc -${PYSITELIB}/IPython/frontend.pyo ${PYSITELIB}/IPython/config/__init__.py ${PYSITELIB}/IPython/config/__init__.pyc ${PYSITELIB}/IPython/config/__init__.pyo +${PYSITELIB}/IPython/config/application.py ${PYSITELIB}/IPython/config/application.pyc ${PYSITELIB}/IPython/config/application.pyo +${PYSITELIB}/IPython/config/configurable.py ${PYSITELIB}/IPython/config/configurable.pyc ${PYSITELIB}/IPython/config/configurable.pyo +${PYSITELIB}/IPython/config/loader.py ${PYSITELIB}/IPython/config/loader.pyc ${PYSITELIB}/IPython/config/loader.pyo -${PYSITELIB}/IPython/config/application.py -${PYSITELIB}/IPython/config/configurable.py -${PYSITELIB}/IPython/config/loader.py +${PYSITELIB}/IPython/config/manager.py +${PYSITELIB}/IPython/config/manager.pyc +${PYSITELIB}/IPython/config/manager.pyo ${PYSITELIB}/IPython/config/profile/README ${PYSITELIB}/IPython/config/profile/README_STARTUP ${PYSITELIB}/IPython/config/profile/__init__.py ${PYSITELIB}/IPython/config/profile/__init__.pyc ${PYSITELIB}/IPython/config/profile/__init__.pyo +${PYSITELIB}/IPython/config/profile/cluster/ipython_config.py ${PYSITELIB}/IPython/config/profile/cluster/ipython_config.pyc ${PYSITELIB}/IPython/config/profile/cluster/ipython_config.pyo -${PYSITELIB}/IPython/config/profile/cluster/ipython_config.py +${PYSITELIB}/IPython/config/profile/math/ipython_config.py ${PYSITELIB}/IPython/config/profile/math/ipython_config.pyc ${PYSITELIB}/IPython/config/profile/math/ipython_config.pyo -${PYSITELIB}/IPython/config/profile/math/ipython_config.py +${PYSITELIB}/IPython/config/profile/pysh/ipython_config.py ${PYSITELIB}/IPython/config/profile/pysh/ipython_config.pyc ${PYSITELIB}/IPython/config/profile/pysh/ipython_config.pyo -${PYSITELIB}/IPython/config/profile/pysh/ipython_config.py +${PYSITELIB}/IPython/config/profile/sympy/ipython_config.py ${PYSITELIB}/IPython/config/profile/sympy/ipython_config.pyc ${PYSITELIB}/IPython/config/profile/sympy/ipython_config.pyo -${PYSITELIB}/IPython/config/profile/sympy/ipython_config.py ${PYSITELIB}/IPython/config/tests/__init__.py ${PYSITELIB}/IPython/config/tests/__init__.pyc ${PYSITELIB}/IPython/config/tests/__init__.pyo +${PYSITELIB}/IPython/config/tests/test_application.py ${PYSITELIB}/IPython/config/tests/test_application.pyc ${PYSITELIB}/IPython/config/tests/test_application.pyo +${PYSITELIB}/IPython/config/tests/test_configurable.py ${PYSITELIB}/IPython/config/tests/test_configurable.pyc ${PYSITELIB}/IPython/config/tests/test_configurable.pyo +${PYSITELIB}/IPython/config/tests/test_loader.py ${PYSITELIB}/IPython/config/tests/test_loader.pyc ${PYSITELIB}/IPython/config/tests/test_loader.pyo -${PYSITELIB}/IPython/config/tests/test_application.py -${PYSITELIB}/IPython/config/tests/test_configurable.py -${PYSITELIB}/IPython/config/tests/test_loader.py ${PYSITELIB}/IPython/consoleapp.py +${PYSITELIB}/IPython/consoleapp.pyc +${PYSITELIB}/IPython/consoleapp.pyo ${PYSITELIB}/IPython/core/__init__.py ${PYSITELIB}/IPython/core/__init__.pyc ${PYSITELIB}/IPython/core/__init__.pyo +${PYSITELIB}/IPython/core/alias.py ${PYSITELIB}/IPython/core/alias.pyc ${PYSITELIB}/IPython/core/alias.pyo +${PYSITELIB}/IPython/core/application.py ${PYSITELIB}/IPython/core/application.pyc ${PYSITELIB}/IPython/core/application.pyo +${PYSITELIB}/IPython/core/autocall.py ${PYSITELIB}/IPython/core/autocall.pyc ${PYSITELIB}/IPython/core/autocall.pyo +${PYSITELIB}/IPython/core/builtin_trap.py ${PYSITELIB}/IPython/core/builtin_trap.pyc ${PYSITELIB}/IPython/core/builtin_trap.pyo +${PYSITELIB}/IPython/core/compilerop.py ${PYSITELIB}/IPython/core/compilerop.pyc ${PYSITELIB}/IPython/core/compilerop.pyo +${PYSITELIB}/IPython/core/completer.py ${PYSITELIB}/IPython/core/completer.pyc ${PYSITELIB}/IPython/core/completer.pyo +${PYSITELIB}/IPython/core/completerlib.py ${PYSITELIB}/IPython/core/completerlib.pyc ${PYSITELIB}/IPython/core/completerlib.pyo +${PYSITELIB}/IPython/core/crashhandler.py ${PYSITELIB}/IPython/core/crashhandler.pyc ${PYSITELIB}/IPython/core/crashhandler.pyo +${PYSITELIB}/IPython/core/debugger.py ${PYSITELIB}/IPython/core/debugger.pyc ${PYSITELIB}/IPython/core/debugger.pyo +${PYSITELIB}/IPython/core/display.py ${PYSITELIB}/IPython/core/display.pyc ${PYSITELIB}/IPython/core/display.pyo +${PYSITELIB}/IPython/core/display_trap.py ${PYSITELIB}/IPython/core/display_trap.pyc ${PYSITELIB}/IPython/core/display_trap.pyo +${PYSITELIB}/IPython/core/displayhook.py ${PYSITELIB}/IPython/core/displayhook.pyc ${PYSITELIB}/IPython/core/displayhook.pyo +${PYSITELIB}/IPython/core/displaypub.py ${PYSITELIB}/IPython/core/displaypub.pyc ${PYSITELIB}/IPython/core/displaypub.pyo +${PYSITELIB}/IPython/core/error.py ${PYSITELIB}/IPython/core/error.pyc ${PYSITELIB}/IPython/core/error.pyo +${PYSITELIB}/IPython/core/events.py ${PYSITELIB}/IPython/core/events.pyc ${PYSITELIB}/IPython/core/events.pyo +${PYSITELIB}/IPython/core/excolors.py ${PYSITELIB}/IPython/core/excolors.pyc ${PYSITELIB}/IPython/core/excolors.pyo +${PYSITELIB}/IPython/core/extensions.py ${PYSITELIB}/IPython/core/extensions.pyc ${PYSITELIB}/IPython/core/extensions.pyo +${PYSITELIB}/IPython/core/formatters.py ${PYSITELIB}/IPython/core/formatters.pyc ${PYSITELIB}/IPython/core/formatters.pyo +${PYSITELIB}/IPython/core/getipython.py ${PYSITELIB}/IPython/core/getipython.pyc ${PYSITELIB}/IPython/core/getipython.pyo +${PYSITELIB}/IPython/core/history.py ${PYSITELIB}/IPython/core/history.pyc ${PYSITELIB}/IPython/core/history.pyo +${PYSITELIB}/IPython/core/historyapp.py ${PYSITELIB}/IPython/core/historyapp.pyc ${PYSITELIB}/IPython/core/historyapp.pyo +${PYSITELIB}/IPython/core/hooks.py ${PYSITELIB}/IPython/core/hooks.pyc ${PYSITELIB}/IPython/core/hooks.pyo +${PYSITELIB}/IPython/core/inputsplitter.py ${PYSITELIB}/IPython/core/inputsplitter.pyc ${PYSITELIB}/IPython/core/inputsplitter.pyo +${PYSITELIB}/IPython/core/inputtransformer.py ${PYSITELIB}/IPython/core/inputtransformer.pyc ${PYSITELIB}/IPython/core/inputtransformer.pyo +${PYSITELIB}/IPython/core/interactiveshell.py ${PYSITELIB}/IPython/core/interactiveshell.pyc ${PYSITELIB}/IPython/core/interactiveshell.pyo +${PYSITELIB}/IPython/core/latex_symbols.py +${PYSITELIB}/IPython/core/latex_symbols.pyc +${PYSITELIB}/IPython/core/latex_symbols.pyo +${PYSITELIB}/IPython/core/logger.py ${PYSITELIB}/IPython/core/logger.pyc ${PYSITELIB}/IPython/core/logger.pyo +${PYSITELIB}/IPython/core/macro.py ${PYSITELIB}/IPython/core/macro.pyc ${PYSITELIB}/IPython/core/macro.pyo +${PYSITELIB}/IPython/core/magic.py ${PYSITELIB}/IPython/core/magic.pyc ${PYSITELIB}/IPython/core/magic.pyo +${PYSITELIB}/IPython/core/magic_arguments.py ${PYSITELIB}/IPython/core/magic_arguments.pyc ${PYSITELIB}/IPython/core/magic_arguments.pyo -${PYSITELIB}/IPython/core/oinspect.pyc -${PYSITELIB}/IPython/core/oinspect.pyo -${PYSITELIB}/IPython/core/page.pyc -${PYSITELIB}/IPython/core/page.pyo -${PYSITELIB}/IPython/core/payload.pyc -${PYSITELIB}/IPython/core/payload.pyo -${PYSITELIB}/IPython/core/payloadpage.pyc -${PYSITELIB}/IPython/core/payloadpage.pyo -${PYSITELIB}/IPython/core/prefilter.pyc -${PYSITELIB}/IPython/core/prefilter.pyo -${PYSITELIB}/IPython/core/profileapp.pyc -${PYSITELIB}/IPython/core/profileapp.pyo -${PYSITELIB}/IPython/core/profiledir.pyc -${PYSITELIB}/IPython/core/profiledir.pyo -${PYSITELIB}/IPython/core/prompts.pyc -${PYSITELIB}/IPython/core/prompts.pyo -${PYSITELIB}/IPython/core/pylabtools.pyc -${PYSITELIB}/IPython/core/pylabtools.pyo -${PYSITELIB}/IPython/core/release.pyc -${PYSITELIB}/IPython/core/release.pyo -${PYSITELIB}/IPython/core/shadowns.pyc -${PYSITELIB}/IPython/core/shadowns.pyo -${PYSITELIB}/IPython/core/shellapp.pyc -${PYSITELIB}/IPython/core/shellapp.pyo -${PYSITELIB}/IPython/core/splitinput.pyc -${PYSITELIB}/IPython/core/splitinput.pyo -${PYSITELIB}/IPython/core/ultratb.pyc -${PYSITELIB}/IPython/core/ultratb.pyo -${PYSITELIB}/IPython/core/usage.pyc -${PYSITELIB}/IPython/core/usage.pyo -${PYSITELIB}/IPython/core/alias.py -${PYSITELIB}/IPython/core/application.py -${PYSITELIB}/IPython/core/autocall.py -${PYSITELIB}/IPython/core/builtin_trap.py -${PYSITELIB}/IPython/core/compilerop.py -${PYSITELIB}/IPython/core/completer.py -${PYSITELIB}/IPython/core/completerlib.py -${PYSITELIB}/IPython/core/crashhandler.py -${PYSITELIB}/IPython/core/debugger.py -${PYSITELIB}/IPython/core/display.py -${PYSITELIB}/IPython/core/display_trap.py -${PYSITELIB}/IPython/core/displayhook.py -${PYSITELIB}/IPython/core/displaypub.py -${PYSITELIB}/IPython/core/error.py -${PYSITELIB}/IPython/core/events.py -${PYSITELIB}/IPython/core/excolors.py -${PYSITELIB}/IPython/core/extensions.py -${PYSITELIB}/IPython/core/formatters.py -${PYSITELIB}/IPython/core/getipython.py -${PYSITELIB}/IPython/core/history.py -${PYSITELIB}/IPython/core/historyapp.py -${PYSITELIB}/IPython/core/hooks.py -${PYSITELIB}/IPython/core/inputsplitter.py -${PYSITELIB}/IPython/core/inputtransformer.py -${PYSITELIB}/IPython/core/interactiveshell.py -${PYSITELIB}/IPython/core/logger.py -${PYSITELIB}/IPython/core/macro.py -${PYSITELIB}/IPython/core/magic.py -${PYSITELIB}/IPython/core/magic_arguments.py ${PYSITELIB}/IPython/core/magics/__init__.py ${PYSITELIB}/IPython/core/magics/__init__.pyc ${PYSITELIB}/IPython/core/magics/__init__.pyo +${PYSITELIB}/IPython/core/magics/auto.py ${PYSITELIB}/IPython/core/magics/auto.pyc ${PYSITELIB}/IPython/core/magics/auto.pyo +${PYSITELIB}/IPython/core/magics/basic.py ${PYSITELIB}/IPython/core/magics/basic.pyc ${PYSITELIB}/IPython/core/magics/basic.pyo +${PYSITELIB}/IPython/core/magics/code.py ${PYSITELIB}/IPython/core/magics/code.pyc ${PYSITELIB}/IPython/core/magics/code.pyo +${PYSITELIB}/IPython/core/magics/config.py ${PYSITELIB}/IPython/core/magics/config.pyc ${PYSITELIB}/IPython/core/magics/config.pyo +${PYSITELIB}/IPython/core/magics/deprecated.py ${PYSITELIB}/IPython/core/magics/deprecated.pyc ${PYSITELIB}/IPython/core/magics/deprecated.pyo +${PYSITELIB}/IPython/core/magics/display.py ${PYSITELIB}/IPython/core/magics/display.pyc ${PYSITELIB}/IPython/core/magics/display.pyo +${PYSITELIB}/IPython/core/magics/execution.py ${PYSITELIB}/IPython/core/magics/execution.pyc ${PYSITELIB}/IPython/core/magics/execution.pyo +${PYSITELIB}/IPython/core/magics/extension.py ${PYSITELIB}/IPython/core/magics/extension.pyc ${PYSITELIB}/IPython/core/magics/extension.pyo +${PYSITELIB}/IPython/core/magics/history.py ${PYSITELIB}/IPython/core/magics/history.pyc ${PYSITELIB}/IPython/core/magics/history.pyo +${PYSITELIB}/IPython/core/magics/logging.py ${PYSITELIB}/IPython/core/magics/logging.pyc ${PYSITELIB}/IPython/core/magics/logging.pyo +${PYSITELIB}/IPython/core/magics/namespace.py ${PYSITELIB}/IPython/core/magics/namespace.pyc ${PYSITELIB}/IPython/core/magics/namespace.pyo +${PYSITELIB}/IPython/core/magics/osm.py ${PYSITELIB}/IPython/core/magics/osm.pyc ${PYSITELIB}/IPython/core/magics/osm.pyo +${PYSITELIB}/IPython/core/magics/pylab.py ${PYSITELIB}/IPython/core/magics/pylab.pyc ${PYSITELIB}/IPython/core/magics/pylab.pyo +${PYSITELIB}/IPython/core/magics/script.py ${PYSITELIB}/IPython/core/magics/script.pyc ${PYSITELIB}/IPython/core/magics/script.pyo -${PYSITELIB}/IPython/core/magics/auto.py -${PYSITELIB}/IPython/core/magics/basic.py -${PYSITELIB}/IPython/core/magics/code.py -${PYSITELIB}/IPython/core/magics/config.py -${PYSITELIB}/IPython/core/magics/deprecated.py -${PYSITELIB}/IPython/core/magics/display.py -${PYSITELIB}/IPython/core/magics/execution.py -${PYSITELIB}/IPython/core/magics/extension.py -${PYSITELIB}/IPython/core/magics/history.py -${PYSITELIB}/IPython/core/magics/logging.py -${PYSITELIB}/IPython/core/magics/namespace.py -${PYSITELIB}/IPython/core/magics/osm.py -${PYSITELIB}/IPython/core/magics/pylab.py -${PYSITELIB}/IPython/core/magics/script.py ${PYSITELIB}/IPython/core/oinspect.py +${PYSITELIB}/IPython/core/oinspect.pyc +${PYSITELIB}/IPython/core/oinspect.pyo ${PYSITELIB}/IPython/core/page.py +${PYSITELIB}/IPython/core/page.pyc +${PYSITELIB}/IPython/core/page.pyo ${PYSITELIB}/IPython/core/payload.py +${PYSITELIB}/IPython/core/payload.pyc +${PYSITELIB}/IPython/core/payload.pyo ${PYSITELIB}/IPython/core/payloadpage.py +${PYSITELIB}/IPython/core/payloadpage.pyc +${PYSITELIB}/IPython/core/payloadpage.pyo ${PYSITELIB}/IPython/core/prefilter.py +${PYSITELIB}/IPython/core/prefilter.pyc +${PYSITELIB}/IPython/core/prefilter.pyo ${PYSITELIB}/IPython/core/profileapp.py +${PYSITELIB}/IPython/core/profileapp.pyc +${PYSITELIB}/IPython/core/profileapp.pyo ${PYSITELIB}/IPython/core/profiledir.py +${PYSITELIB}/IPython/core/profiledir.pyc +${PYSITELIB}/IPython/core/profiledir.pyo ${PYSITELIB}/IPython/core/prompts.py +${PYSITELIB}/IPython/core/prompts.pyc +${PYSITELIB}/IPython/core/prompts.pyo ${PYSITELIB}/IPython/core/pylabtools.py +${PYSITELIB}/IPython/core/pylabtools.pyc +${PYSITELIB}/IPython/core/pylabtools.pyo ${PYSITELIB}/IPython/core/release.py +${PYSITELIB}/IPython/core/release.pyc +${PYSITELIB}/IPython/core/release.pyo ${PYSITELIB}/IPython/core/shadowns.py +${PYSITELIB}/IPython/core/shadowns.pyc +${PYSITELIB}/IPython/core/shadowns.pyo ${PYSITELIB}/IPython/core/shellapp.py +${PYSITELIB}/IPython/core/shellapp.pyc +${PYSITELIB}/IPython/core/shellapp.pyo ${PYSITELIB}/IPython/core/splitinput.py +${PYSITELIB}/IPython/core/splitinput.pyc +${PYSITELIB}/IPython/core/splitinput.pyo ${PYSITELIB}/IPython/core/tests/2x2.jpg ${PYSITELIB}/IPython/core/tests/2x2.png ${PYSITELIB}/IPython/core/tests/__init__.py ${PYSITELIB}/IPython/core/tests/__init__.pyc ${PYSITELIB}/IPython/core/tests/__init__.pyo +${PYSITELIB}/IPython/core/tests/daft_extension.py ${PYSITELIB}/IPython/core/tests/daft_extension.pyc ${PYSITELIB}/IPython/core/tests/daft_extension.pyo +${PYSITELIB}/IPython/core/tests/nonascii.py ${PYSITELIB}/IPython/core/tests/nonascii.pyc ${PYSITELIB}/IPython/core/tests/nonascii.pyo +${PYSITELIB}/IPython/core/tests/nonascii2.py ${PYSITELIB}/IPython/core/tests/nonascii2.pyc ${PYSITELIB}/IPython/core/tests/nonascii2.pyo +${PYSITELIB}/IPython/core/tests/print_argv.py ${PYSITELIB}/IPython/core/tests/print_argv.pyc ${PYSITELIB}/IPython/core/tests/print_argv.pyo +${PYSITELIB}/IPython/core/tests/refbug.py ${PYSITELIB}/IPython/core/tests/refbug.pyc ${PYSITELIB}/IPython/core/tests/refbug.pyo +${PYSITELIB}/IPython/core/tests/simpleerr.py ${PYSITELIB}/IPython/core/tests/simpleerr.pyc ${PYSITELIB}/IPython/core/tests/simpleerr.pyo +${PYSITELIB}/IPython/core/tests/tclass.py ${PYSITELIB}/IPython/core/tests/tclass.pyc ${PYSITELIB}/IPython/core/tests/tclass.pyo +${PYSITELIB}/IPython/core/tests/test_alias.py ${PYSITELIB}/IPython/core/tests/test_alias.pyc ${PYSITELIB}/IPython/core/tests/test_alias.pyo +${PYSITELIB}/IPython/core/tests/test_application.py ${PYSITELIB}/IPython/core/tests/test_application.pyc ${PYSITELIB}/IPython/core/tests/test_application.pyo +${PYSITELIB}/IPython/core/tests/test_autocall.py ${PYSITELIB}/IPython/core/tests/test_autocall.pyc ${PYSITELIB}/IPython/core/tests/test_autocall.pyo +${PYSITELIB}/IPython/core/tests/test_compilerop.py ${PYSITELIB}/IPython/core/tests/test_compilerop.pyc ${PYSITELIB}/IPython/core/tests/test_compilerop.pyo +${PYSITELIB}/IPython/core/tests/test_completer.py ${PYSITELIB}/IPython/core/tests/test_completer.pyc ${PYSITELIB}/IPython/core/tests/test_completer.pyo +${PYSITELIB}/IPython/core/tests/test_completerlib.py ${PYSITELIB}/IPython/core/tests/test_completerlib.pyc ${PYSITELIB}/IPython/core/tests/test_completerlib.pyo +${PYSITELIB}/IPython/core/tests/test_debugger.py ${PYSITELIB}/IPython/core/tests/test_debugger.pyc ${PYSITELIB}/IPython/core/tests/test_debugger.pyo +${PYSITELIB}/IPython/core/tests/test_display.py ${PYSITELIB}/IPython/core/tests/test_display.pyc ${PYSITELIB}/IPython/core/tests/test_display.pyo +${PYSITELIB}/IPython/core/tests/test_events.py ${PYSITELIB}/IPython/core/tests/test_events.pyc ${PYSITELIB}/IPython/core/tests/test_events.pyo +${PYSITELIB}/IPython/core/tests/test_extension.py ${PYSITELIB}/IPython/core/tests/test_extension.pyc ${PYSITELIB}/IPython/core/tests/test_extension.pyo +${PYSITELIB}/IPython/core/tests/test_formatters.py ${PYSITELIB}/IPython/core/tests/test_formatters.pyc ${PYSITELIB}/IPython/core/tests/test_formatters.pyo +${PYSITELIB}/IPython/core/tests/test_handlers.py ${PYSITELIB}/IPython/core/tests/test_handlers.pyc ${PYSITELIB}/IPython/core/tests/test_handlers.pyo +${PYSITELIB}/IPython/core/tests/test_history.py ${PYSITELIB}/IPython/core/tests/test_history.pyc ${PYSITELIB}/IPython/core/tests/test_history.pyo +${PYSITELIB}/IPython/core/tests/test_hooks.py ${PYSITELIB}/IPython/core/tests/test_hooks.pyc ${PYSITELIB}/IPython/core/tests/test_hooks.pyo +${PYSITELIB}/IPython/core/tests/test_imports.py ${PYSITELIB}/IPython/core/tests/test_imports.pyc ${PYSITELIB}/IPython/core/tests/test_imports.pyo +${PYSITELIB}/IPython/core/tests/test_inputsplitter.py ${PYSITELIB}/IPython/core/tests/test_inputsplitter.pyc ${PYSITELIB}/IPython/core/tests/test_inputsplitter.pyo +${PYSITELIB}/IPython/core/tests/test_inputtransformer.py ${PYSITELIB}/IPython/core/tests/test_inputtransformer.pyc ${PYSITELIB}/IPython/core/tests/test_inputtransformer.pyo +${PYSITELIB}/IPython/core/tests/test_interactiveshell.py ${PYSITELIB}/IPython/core/tests/test_interactiveshell.pyc ${PYSITELIB}/IPython/core/tests/test_interactiveshell.pyo +${PYSITELIB}/IPython/core/tests/test_iplib.py ${PYSITELIB}/IPython/core/tests/test_iplib.pyc ${PYSITELIB}/IPython/core/tests/test_iplib.pyo +${PYSITELIB}/IPython/core/tests/test_logger.py ${PYSITELIB}/IPython/core/tests/test_logger.pyc ${PYSITELIB}/IPython/core/tests/test_logger.pyo +${PYSITELIB}/IPython/core/tests/test_magic.py ${PYSITELIB}/IPython/core/tests/test_magic.pyc ${PYSITELIB}/IPython/core/tests/test_magic.pyo +${PYSITELIB}/IPython/core/tests/test_magic_arguments.py ${PYSITELIB}/IPython/core/tests/test_magic_arguments.pyc ${PYSITELIB}/IPython/core/tests/test_magic_arguments.pyo +${PYSITELIB}/IPython/core/tests/test_magic_terminal.py ${PYSITELIB}/IPython/core/tests/test_magic_terminal.pyc ${PYSITELIB}/IPython/core/tests/test_magic_terminal.pyo +${PYSITELIB}/IPython/core/tests/test_oinspect.py ${PYSITELIB}/IPython/core/tests/test_oinspect.pyc ${PYSITELIB}/IPython/core/tests/test_oinspect.pyo +${PYSITELIB}/IPython/core/tests/test_page.py ${PYSITELIB}/IPython/core/tests/test_page.pyc ${PYSITELIB}/IPython/core/tests/test_page.pyo +${PYSITELIB}/IPython/core/tests/test_prefilter.py ${PYSITELIB}/IPython/core/tests/test_prefilter.pyc ${PYSITELIB}/IPython/core/tests/test_prefilter.pyo +${PYSITELIB}/IPython/core/tests/test_profile.py ${PYSITELIB}/IPython/core/tests/test_profile.pyc ${PYSITELIB}/IPython/core/tests/test_profile.pyo +${PYSITELIB}/IPython/core/tests/test_prompts.py ${PYSITELIB}/IPython/core/tests/test_prompts.pyc ${PYSITELIB}/IPython/core/tests/test_prompts.pyo +${PYSITELIB}/IPython/core/tests/test_pylabtools.py ${PYSITELIB}/IPython/core/tests/test_pylabtools.pyc ${PYSITELIB}/IPython/core/tests/test_pylabtools.pyo +${PYSITELIB}/IPython/core/tests/test_run.py ${PYSITELIB}/IPython/core/tests/test_run.pyc ${PYSITELIB}/IPython/core/tests/test_run.pyo +${PYSITELIB}/IPython/core/tests/test_shellapp.py ${PYSITELIB}/IPython/core/tests/test_shellapp.pyc ${PYSITELIB}/IPython/core/tests/test_shellapp.pyo +${PYSITELIB}/IPython/core/tests/test_splitinput.py ${PYSITELIB}/IPython/core/tests/test_splitinput.pyc ${PYSITELIB}/IPython/core/tests/test_splitinput.pyo +${PYSITELIB}/IPython/core/tests/test_ultratb.py ${PYSITELIB}/IPython/core/tests/test_ultratb.pyc ${PYSITELIB}/IPython/core/tests/test_ultratb.pyo -${PYSITELIB}/IPython/core/tests/daft_extension.py -${PYSITELIB}/IPython/core/tests/nonascii.py -${PYSITELIB}/IPython/core/tests/nonascii2.py -${PYSITELIB}/IPython/core/tests/print_argv.py -${PYSITELIB}/IPython/core/tests/refbug.py -${PYSITELIB}/IPython/core/tests/simpleerr.py -${PYSITELIB}/IPython/core/tests/tclass.py -${PYSITELIB}/IPython/core/tests/test_alias.py -${PYSITELIB}/IPython/core/tests/test_application.py -${PYSITELIB}/IPython/core/tests/test_autocall.py -${PYSITELIB}/IPython/core/tests/test_compilerop.py -${PYSITELIB}/IPython/core/tests/test_completer.py -${PYSITELIB}/IPython/core/tests/test_completerlib.py -${PYSITELIB}/IPython/core/tests/test_debugger.py -${PYSITELIB}/IPython/core/tests/test_display.py -${PYSITELIB}/IPython/core/tests/test_events.py -${PYSITELIB}/IPython/core/tests/test_extension.py -${PYSITELIB}/IPython/core/tests/test_formatters.py -${PYSITELIB}/IPython/core/tests/test_handlers.py -${PYSITELIB}/IPython/core/tests/test_history.py -${PYSITELIB}/IPython/core/tests/test_hooks.py -${PYSITELIB}/IPython/core/tests/test_imports.py -${PYSITELIB}/IPython/core/tests/test_inputsplitter.py -${PYSITELIB}/IPython/core/tests/test_inputtransformer.py -${PYSITELIB}/IPython/core/tests/test_interactiveshell.py -${PYSITELIB}/IPython/core/tests/test_iplib.py -${PYSITELIB}/IPython/core/tests/test_logger.py -${PYSITELIB}/IPython/core/tests/test_magic.py -${PYSITELIB}/IPython/core/tests/test_magic_arguments.py -${PYSITELIB}/IPython/core/tests/test_magic_terminal.py -${PYSITELIB}/IPython/core/tests/test_oinspect.py -${PYSITELIB}/IPython/core/tests/test_page.py -${PYSITELIB}/IPython/core/tests/test_prefilter.py -${PYSITELIB}/IPython/core/tests/test_profile.py -${PYSITELIB}/IPython/core/tests/test_prompts.py -${PYSITELIB}/IPython/core/tests/test_pylabtools.py -${PYSITELIB}/IPython/core/tests/test_run.py -${PYSITELIB}/IPython/core/tests/test_shellapp.py -${PYSITELIB}/IPython/core/tests/test_splitinput.py -${PYSITELIB}/IPython/core/tests/test_ultratb.py ${PYSITELIB}/IPython/core/ultratb.py +${PYSITELIB}/IPython/core/ultratb.pyc +${PYSITELIB}/IPython/core/ultratb.pyo ${PYSITELIB}/IPython/core/usage.py +${PYSITELIB}/IPython/core/usage.pyc +${PYSITELIB}/IPython/core/usage.pyo ${PYSITELIB}/IPython/display.py +${PYSITELIB}/IPython/display.pyc +${PYSITELIB}/IPython/display.pyo ${PYSITELIB}/IPython/extensions/__init__.py ${PYSITELIB}/IPython/extensions/__init__.pyc ${PYSITELIB}/IPython/extensions/__init__.pyo +${PYSITELIB}/IPython/extensions/autoreload.py ${PYSITELIB}/IPython/extensions/autoreload.pyc ${PYSITELIB}/IPython/extensions/autoreload.pyo +${PYSITELIB}/IPython/extensions/cythonmagic.py ${PYSITELIB}/IPython/extensions/cythonmagic.pyc ${PYSITELIB}/IPython/extensions/cythonmagic.pyo -${PYSITELIB}/IPython/extensions/octavemagic.pyc -${PYSITELIB}/IPython/extensions/octavemagic.pyo +${PYSITELIB}/IPython/extensions/parallelmagic.py ${PYSITELIB}/IPython/extensions/parallelmagic.pyc ${PYSITELIB}/IPython/extensions/parallelmagic.pyo +${PYSITELIB}/IPython/extensions/rmagic.py ${PYSITELIB}/IPython/extensions/rmagic.pyc ${PYSITELIB}/IPython/extensions/rmagic.pyo +${PYSITELIB}/IPython/extensions/storemagic.py ${PYSITELIB}/IPython/extensions/storemagic.pyc ${PYSITELIB}/IPython/extensions/storemagic.pyo +${PYSITELIB}/IPython/extensions/sympyprinting.py ${PYSITELIB}/IPython/extensions/sympyprinting.pyc ${PYSITELIB}/IPython/extensions/sympyprinting.pyo -${PYSITELIB}/IPython/extensions/autoreload.py -${PYSITELIB}/IPython/extensions/cythonmagic.py -${PYSITELIB}/IPython/extensions/octavemagic.py -${PYSITELIB}/IPython/extensions/parallelmagic.py -${PYSITELIB}/IPython/extensions/rmagic.py -${PYSITELIB}/IPython/extensions/storemagic.py -${PYSITELIB}/IPython/extensions/sympyprinting.py ${PYSITELIB}/IPython/extensions/tests/__init__.py ${PYSITELIB}/IPython/extensions/tests/__init__.pyc ${PYSITELIB}/IPython/extensions/tests/__init__.pyo +${PYSITELIB}/IPython/extensions/tests/test_autoreload.py ${PYSITELIB}/IPython/extensions/tests/test_autoreload.pyc ${PYSITELIB}/IPython/extensions/tests/test_autoreload.pyo -${PYSITELIB}/IPython/extensions/tests/test_cythonmagic.pyc -${PYSITELIB}/IPython/extensions/tests/test_cythonmagic.pyo -${PYSITELIB}/IPython/extensions/tests/test_octavemagic.pyc -${PYSITELIB}/IPython/extensions/tests/test_octavemagic.pyo -${PYSITELIB}/IPython/extensions/tests/test_rmagic.pyc -${PYSITELIB}/IPython/extensions/tests/test_rmagic.pyo +${PYSITELIB}/IPython/extensions/tests/test_storemagic.py ${PYSITELIB}/IPython/extensions/tests/test_storemagic.pyc ${PYSITELIB}/IPython/extensions/tests/test_storemagic.pyo -${PYSITELIB}/IPython/extensions/tests/test_autoreload.py -${PYSITELIB}/IPython/extensions/tests/test_cythonmagic.py -${PYSITELIB}/IPython/extensions/tests/test_octavemagic.py -${PYSITELIB}/IPython/extensions/tests/test_rmagic.py -${PYSITELIB}/IPython/extensions/tests/test_storemagic.py ${PYSITELIB}/IPython/external/__init__.py ${PYSITELIB}/IPython/external/__init__.pyc ${PYSITELIB}/IPython/external/__init__.pyo -${PYSITELIB}/IPython/external/mathjax.pyc -${PYSITELIB}/IPython/external/mathjax.pyo -${PYSITELIB}/IPython/external/qt.pyc -${PYSITELIB}/IPython/external/qt.pyo -${PYSITELIB}/IPython/external/qt_for_kernel.pyc -${PYSITELIB}/IPython/external/qt_for_kernel.pyo -${PYSITELIB}/IPython/external/qt_loaders.pyc -${PYSITELIB}/IPython/external/qt_loaders.pyo ${PYSITELIB}/IPython/external/appnope/__init__.py ${PYSITELIB}/IPython/external/appnope/__init__.pyc ${PYSITELIB}/IPython/external/appnope/__init__.pyo +${PYSITELIB}/IPython/external/appnope/_dummy.py ${PYSITELIB}/IPython/external/appnope/_dummy.pyc ${PYSITELIB}/IPython/external/appnope/_dummy.pyo +${PYSITELIB}/IPython/external/appnope/_nope.py ${PYSITELIB}/IPython/external/appnope/_nope.pyc ${PYSITELIB}/IPython/external/appnope/_nope.pyo -${PYSITELIB}/IPython/external/appnope/_dummy.py -${PYSITELIB}/IPython/external/appnope/_nope.py ${PYSITELIB}/IPython/external/decorator/__init__.py ${PYSITELIB}/IPython/external/decorator/__init__.pyc ${PYSITELIB}/IPython/external/decorator/__init__.pyo +${PYSITELIB}/IPython/external/decorator/_decorator.py ${PYSITELIB}/IPython/external/decorator/_decorator.pyc ${PYSITELIB}/IPython/external/decorator/_decorator.pyo -${PYSITELIB}/IPython/external/decorator/_decorator.py ${PYSITELIB}/IPython/external/decorators/__init__.py ${PYSITELIB}/IPython/external/decorators/__init__.pyc ${PYSITELIB}/IPython/external/decorators/__init__.pyo +${PYSITELIB}/IPython/external/decorators/_decorators.py ${PYSITELIB}/IPython/external/decorators/_decorators.pyc ${PYSITELIB}/IPython/external/decorators/_decorators.pyo +${PYSITELIB}/IPython/external/decorators/_numpy_testing_noseclasses.py ${PYSITELIB}/IPython/external/decorators/_numpy_testing_noseclasses.pyc ${PYSITELIB}/IPython/external/decorators/_numpy_testing_noseclasses.pyo +${PYSITELIB}/IPython/external/decorators/_numpy_testing_utils.py ${PYSITELIB}/IPython/external/decorators/_numpy_testing_utils.pyc ${PYSITELIB}/IPython/external/decorators/_numpy_testing_utils.pyo -${PYSITELIB}/IPython/external/decorators/_decorators.py -${PYSITELIB}/IPython/external/decorators/_numpy_testing_noseclasses.py -${PYSITELIB}/IPython/external/decorators/_numpy_testing_utils.py -${PYSITELIB}/IPython/external/jsonpointer/__init__.py -${PYSITELIB}/IPython/external/jsonpointer/__init__.pyc -${PYSITELIB}/IPython/external/jsonpointer/__init__.pyo -${PYSITELIB}/IPython/external/jsonpointer/_jsonpointer.pyc -${PYSITELIB}/IPython/external/jsonpointer/_jsonpointer.pyo -${PYSITELIB}/IPython/external/jsonpointer/_jsonpointer.py -${PYSITELIB}/IPython/external/jsonschema/__init__.py -${PYSITELIB}/IPython/external/jsonschema/__init__.pyc -${PYSITELIB}/IPython/external/jsonschema/__init__.pyo -${PYSITELIB}/IPython/external/jsonschema/_jsonschema.pyc -${PYSITELIB}/IPython/external/jsonschema/_jsonschema.pyo -${PYSITELIB}/IPython/external/jsonschema/_jsonschema.py ${PYSITELIB}/IPython/external/mathjax.py +${PYSITELIB}/IPython/external/mathjax.pyc +${PYSITELIB}/IPython/external/mathjax.pyo ${PYSITELIB}/IPython/external/path/__init__.py ${PYSITELIB}/IPython/external/path/__init__.pyc ${PYSITELIB}/IPython/external/path/__init__.pyo +${PYSITELIB}/IPython/external/path/_path.py ${PYSITELIB}/IPython/external/path/_path.pyc ${PYSITELIB}/IPython/external/path/_path.pyo -${PYSITELIB}/IPython/external/path/_path.py ${PYSITELIB}/IPython/external/pexpect/__init__.py ${PYSITELIB}/IPython/external/pexpect/__init__.pyc ${PYSITELIB}/IPython/external/pexpect/__init__.pyo +${PYSITELIB}/IPython/external/pexpect/_pexpect.py ${PYSITELIB}/IPython/external/pexpect/_pexpect.pyc ${PYSITELIB}/IPython/external/pexpect/_pexpect.pyo -${PYSITELIB}/IPython/external/pexpect/_pexpect.py ${PYSITELIB}/IPython/external/qt.py +${PYSITELIB}/IPython/external/qt.pyc +${PYSITELIB}/IPython/external/qt.pyo ${PYSITELIB}/IPython/external/qt_for_kernel.py +${PYSITELIB}/IPython/external/qt_for_kernel.pyc +${PYSITELIB}/IPython/external/qt_for_kernel.pyo ${PYSITELIB}/IPython/external/qt_loaders.py +${PYSITELIB}/IPython/external/qt_loaders.pyc +${PYSITELIB}/IPython/external/qt_loaders.pyo ${PYSITELIB}/IPython/external/simplegeneric/__init__.py ${PYSITELIB}/IPython/external/simplegeneric/__init__.pyc ${PYSITELIB}/IPython/external/simplegeneric/__init__.pyo +${PYSITELIB}/IPython/external/simplegeneric/_simplegeneric.py ${PYSITELIB}/IPython/external/simplegeneric/_simplegeneric.pyc ${PYSITELIB}/IPython/external/simplegeneric/_simplegeneric.pyo -${PYSITELIB}/IPython/external/simplegeneric/_simplegeneric.py -${PYSITELIB}/IPython/external/ssh/__init__.py -${PYSITELIB}/IPython/external/ssh/__init__.pyc -${PYSITELIB}/IPython/external/ssh/__init__.pyo -${PYSITELIB}/IPython/external/ssh/forward.pyc -${PYSITELIB}/IPython/external/ssh/forward.pyo -${PYSITELIB}/IPython/external/ssh/tunnel.pyc -${PYSITELIB}/IPython/external/ssh/tunnel.pyo -${PYSITELIB}/IPython/external/ssh/forward.py -${PYSITELIB}/IPython/external/ssh/tunnel.py ${PYSITELIB}/IPython/frontend.py +${PYSITELIB}/IPython/frontend.pyc +${PYSITELIB}/IPython/frontend.pyo ${PYSITELIB}/IPython/html/__init__.py -${PYSITELIB}/IPython/html/__main__.py ${PYSITELIB}/IPython/html/__init__.pyc ${PYSITELIB}/IPython/html/__init__.pyo +${PYSITELIB}/IPython/html/__main__.py ${PYSITELIB}/IPython/html/__main__.pyc ${PYSITELIB}/IPython/html/__main__.pyo -${PYSITELIB}/IPython/html/fabfile.pyc -${PYSITELIB}/IPython/html/fabfile.pyo -${PYSITELIB}/IPython/html/log.pyc -${PYSITELIB}/IPython/html/log.pyo -${PYSITELIB}/IPython/html/nbextensions.pyc -${PYSITELIB}/IPython/html/nbextensions.pyo -${PYSITELIB}/IPython/html/notebookapp.pyc -${PYSITELIB}/IPython/html/notebookapp.pyo -${PYSITELIB}/IPython/html/utils.pyc -${PYSITELIB}/IPython/html/utils.pyo +${PYSITELIB}/IPython/html/allow76.py +${PYSITELIB}/IPython/html/allow76.pyc +${PYSITELIB}/IPython/html/allow76.pyo ${PYSITELIB}/IPython/html/auth/__init__.py ${PYSITELIB}/IPython/html/auth/__init__.pyc ${PYSITELIB}/IPython/html/auth/__init__.pyo +${PYSITELIB}/IPython/html/auth/login.py ${PYSITELIB}/IPython/html/auth/login.pyc ${PYSITELIB}/IPython/html/auth/login.pyo +${PYSITELIB}/IPython/html/auth/logout.py ${PYSITELIB}/IPython/html/auth/logout.pyc ${PYSITELIB}/IPython/html/auth/logout.pyo -${PYSITELIB}/IPython/html/auth/login.py -${PYSITELIB}/IPython/html/auth/logout.py ${PYSITELIB}/IPython/html/base/__init__.py ${PYSITELIB}/IPython/html/base/__init__.pyc ${PYSITELIB}/IPython/html/base/__init__.pyo +${PYSITELIB}/IPython/html/base/handlers.py ${PYSITELIB}/IPython/html/base/handlers.pyc ${PYSITELIB}/IPython/html/base/handlers.pyo +${PYSITELIB}/IPython/html/base/zmqhandlers.py ${PYSITELIB}/IPython/html/base/zmqhandlers.pyc ${PYSITELIB}/IPython/html/base/zmqhandlers.pyo -${PYSITELIB}/IPython/html/base/handlers.py -${PYSITELIB}/IPython/html/base/zmqhandlers.py -${PYSITELIB}/IPython/html/fabfile.py +${PYSITELIB}/IPython/html/edit/__init__.py +${PYSITELIB}/IPython/html/edit/__init__.pyc +${PYSITELIB}/IPython/html/edit/__init__.pyo +${PYSITELIB}/IPython/html/edit/handlers.py +${PYSITELIB}/IPython/html/edit/handlers.pyc +${PYSITELIB}/IPython/html/edit/handlers.pyo +${PYSITELIB}/IPython/html/files/__init__.py +${PYSITELIB}/IPython/html/files/__init__.pyc +${PYSITELIB}/IPython/html/files/__init__.pyo +${PYSITELIB}/IPython/html/files/handlers.py +${PYSITELIB}/IPython/html/files/handlers.pyc +${PYSITELIB}/IPython/html/files/handlers.pyo +${PYSITELIB}/IPython/html/kernelspecs/__init__.py +${PYSITELIB}/IPython/html/kernelspecs/__init__.pyc +${PYSITELIB}/IPython/html/kernelspecs/__init__.pyo +${PYSITELIB}/IPython/html/kernelspecs/handlers.py +${PYSITELIB}/IPython/html/kernelspecs/handlers.pyc +${PYSITELIB}/IPython/html/kernelspecs/handlers.pyo ${PYSITELIB}/IPython/html/log.py +${PYSITELIB}/IPython/html/log.pyc +${PYSITELIB}/IPython/html/log.pyo ${PYSITELIB}/IPython/html/nbconvert/__init__.py ${PYSITELIB}/IPython/html/nbconvert/__init__.pyc ${PYSITELIB}/IPython/html/nbconvert/__init__.pyo +${PYSITELIB}/IPython/html/nbconvert/handlers.py ${PYSITELIB}/IPython/html/nbconvert/handlers.pyc ${PYSITELIB}/IPython/html/nbconvert/handlers.pyo -${PYSITELIB}/IPython/html/nbconvert/handlers.py ${PYSITELIB}/IPython/html/nbconvert/tests/__init__.py ${PYSITELIB}/IPython/html/nbconvert/tests/__init__.pyc ${PYSITELIB}/IPython/html/nbconvert/tests/__init__.pyo +${PYSITELIB}/IPython/html/nbconvert/tests/test_nbconvert_handlers.py ${PYSITELIB}/IPython/html/nbconvert/tests/test_nbconvert_handlers.pyc ${PYSITELIB}/IPython/html/nbconvert/tests/test_nbconvert_handlers.pyo -${PYSITELIB}/IPython/html/nbconvert/tests/test_nbconvert_handlers.py ${PYSITELIB}/IPython/html/nbextensions.py +${PYSITELIB}/IPython/html/nbextensions.pyc +${PYSITELIB}/IPython/html/nbextensions.pyo ${PYSITELIB}/IPython/html/notebook/__init__.py ${PYSITELIB}/IPython/html/notebook/__init__.pyc ${PYSITELIB}/IPython/html/notebook/__init__.pyo +${PYSITELIB}/IPython/html/notebook/handlers.py ${PYSITELIB}/IPython/html/notebook/handlers.pyc ${PYSITELIB}/IPython/html/notebook/handlers.pyo -${PYSITELIB}/IPython/html/notebook/handlers.py ${PYSITELIB}/IPython/html/notebookapp.py +${PYSITELIB}/IPython/html/notebookapp.pyc +${PYSITELIB}/IPython/html/notebookapp.pyo ${PYSITELIB}/IPython/html/services/__init__.py ${PYSITELIB}/IPython/html/services/__init__.pyc ${PYSITELIB}/IPython/html/services/__init__.pyo ${PYSITELIB}/IPython/html/services/clusters/__init__.py ${PYSITELIB}/IPython/html/services/clusters/__init__.pyc ${PYSITELIB}/IPython/html/services/clusters/__init__.pyo +${PYSITELIB}/IPython/html/services/clusters/clustermanager.py ${PYSITELIB}/IPython/html/services/clusters/clustermanager.pyc ${PYSITELIB}/IPython/html/services/clusters/clustermanager.pyo +${PYSITELIB}/IPython/html/services/clusters/handlers.py ${PYSITELIB}/IPython/html/services/clusters/handlers.pyc ${PYSITELIB}/IPython/html/services/clusters/handlers.pyo -${PYSITELIB}/IPython/html/services/clusters/clustermanager.py -${PYSITELIB}/IPython/html/services/clusters/handlers.py +${PYSITELIB}/IPython/html/services/config/__init__.py +${PYSITELIB}/IPython/html/services/config/__init__.pyc +${PYSITELIB}/IPython/html/services/config/__init__.pyo +${PYSITELIB}/IPython/html/services/config/handlers.py +${PYSITELIB}/IPython/html/services/config/handlers.pyc +${PYSITELIB}/IPython/html/services/config/handlers.pyo +${PYSITELIB}/IPython/html/services/config/manager.py +${PYSITELIB}/IPython/html/services/config/manager.pyc +${PYSITELIB}/IPython/html/services/config/manager.pyo +${PYSITELIB}/IPython/html/services/config/tests/__init__.py +${PYSITELIB}/IPython/html/services/config/tests/__init__.pyc +${PYSITELIB}/IPython/html/services/config/tests/__init__.pyo +${PYSITELIB}/IPython/html/services/config/tests/test_config_api.py +${PYSITELIB}/IPython/html/services/config/tests/test_config_api.pyc +${PYSITELIB}/IPython/html/services/config/tests/test_config_api.pyo +${PYSITELIB}/IPython/html/services/contents/__init__.py +${PYSITELIB}/IPython/html/services/contents/__init__.pyc +${PYSITELIB}/IPython/html/services/contents/__init__.pyo +${PYSITELIB}/IPython/html/services/contents/checkpoints.py +${PYSITELIB}/IPython/html/services/contents/checkpoints.pyc +${PYSITELIB}/IPython/html/services/contents/checkpoints.pyo +${PYSITELIB}/IPython/html/services/contents/filecheckpoints.py +${PYSITELIB}/IPython/html/services/contents/filecheckpoints.pyc +${PYSITELIB}/IPython/html/services/contents/filecheckpoints.pyo +${PYSITELIB}/IPython/html/services/contents/fileio.py +${PYSITELIB}/IPython/html/services/contents/fileio.pyc +${PYSITELIB}/IPython/html/services/contents/fileio.pyo +${PYSITELIB}/IPython/html/services/contents/filemanager.py +${PYSITELIB}/IPython/html/services/contents/filemanager.pyc +${PYSITELIB}/IPython/html/services/contents/filemanager.pyo +${PYSITELIB}/IPython/html/services/contents/handlers.py +${PYSITELIB}/IPython/html/services/contents/handlers.pyc +${PYSITELIB}/IPython/html/services/contents/handlers.pyo +${PYSITELIB}/IPython/html/services/contents/manager.py +${PYSITELIB}/IPython/html/services/contents/manager.pyc +${PYSITELIB}/IPython/html/services/contents/manager.pyo +${PYSITELIB}/IPython/html/services/contents/tests/__init__.py +${PYSITELIB}/IPython/html/services/contents/tests/__init__.pyc +${PYSITELIB}/IPython/html/services/contents/tests/__init__.pyo +${PYSITELIB}/IPython/html/services/contents/tests/test_contents_api.py +${PYSITELIB}/IPython/html/services/contents/tests/test_contents_api.pyc +${PYSITELIB}/IPython/html/services/contents/tests/test_contents_api.pyo +${PYSITELIB}/IPython/html/services/contents/tests/test_manager.py +${PYSITELIB}/IPython/html/services/contents/tests/test_manager.pyc +${PYSITELIB}/IPython/html/services/contents/tests/test_manager.pyo ${PYSITELIB}/IPython/html/services/kernels/__init__.py ${PYSITELIB}/IPython/html/services/kernels/__init__.pyc ${PYSITELIB}/IPython/html/services/kernels/__init__.pyo +${PYSITELIB}/IPython/html/services/kernels/handlers.py ${PYSITELIB}/IPython/html/services/kernels/handlers.pyc ${PYSITELIB}/IPython/html/services/kernels/handlers.pyo +${PYSITELIB}/IPython/html/services/kernels/kernelmanager.py ${PYSITELIB}/IPython/html/services/kernels/kernelmanager.pyc ${PYSITELIB}/IPython/html/services/kernels/kernelmanager.pyo -${PYSITELIB}/IPython/html/services/kernels/handlers.py -${PYSITELIB}/IPython/html/services/kernels/kernelmanager.py ${PYSITELIB}/IPython/html/services/kernels/tests/__init__.py ${PYSITELIB}/IPython/html/services/kernels/tests/__init__.pyc ${PYSITELIB}/IPython/html/services/kernels/tests/__init__.pyo +${PYSITELIB}/IPython/html/services/kernels/tests/test_kernels_api.py ${PYSITELIB}/IPython/html/services/kernels/tests/test_kernels_api.pyc ${PYSITELIB}/IPython/html/services/kernels/tests/test_kernels_api.pyo -${PYSITELIB}/IPython/html/services/kernels/tests/test_kernels_api.py +${PYSITELIB}/IPython/html/services/kernelspecs/__init__.py +${PYSITELIB}/IPython/html/services/kernelspecs/__init__.pyc +${PYSITELIB}/IPython/html/services/kernelspecs/__init__.pyo +${PYSITELIB}/IPython/html/services/kernelspecs/handlers.py +${PYSITELIB}/IPython/html/services/kernelspecs/handlers.pyc +${PYSITELIB}/IPython/html/services/kernelspecs/handlers.pyo +${PYSITELIB}/IPython/html/services/kernelspecs/tests/__init__.py +${PYSITELIB}/IPython/html/services/kernelspecs/tests/__init__.pyc +${PYSITELIB}/IPython/html/services/kernelspecs/tests/__init__.pyo +${PYSITELIB}/IPython/html/services/kernelspecs/tests/test_kernelspecs_api.py +${PYSITELIB}/IPython/html/services/kernelspecs/tests/test_kernelspecs_api.pyc +${PYSITELIB}/IPython/html/services/kernelspecs/tests/test_kernelspecs_api.pyo ${PYSITELIB}/IPython/html/services/nbconvert/__init__.py ${PYSITELIB}/IPython/html/services/nbconvert/__init__.pyc ${PYSITELIB}/IPython/html/services/nbconvert/__init__.pyo +${PYSITELIB}/IPython/html/services/nbconvert/handlers.py ${PYSITELIB}/IPython/html/services/nbconvert/handlers.pyc ${PYSITELIB}/IPython/html/services/nbconvert/handlers.pyo -${PYSITELIB}/IPython/html/services/nbconvert/handlers.py ${PYSITELIB}/IPython/html/services/nbconvert/tests/__init__.py ${PYSITELIB}/IPython/html/services/nbconvert/tests/__init__.pyc ${PYSITELIB}/IPython/html/services/nbconvert/tests/__init__.pyo +${PYSITELIB}/IPython/html/services/nbconvert/tests/test_nbconvert_api.py ${PYSITELIB}/IPython/html/services/nbconvert/tests/test_nbconvert_api.pyc ${PYSITELIB}/IPython/html/services/nbconvert/tests/test_nbconvert_api.pyo -${PYSITELIB}/IPython/html/services/nbconvert/tests/test_nbconvert_api.py -${PYSITELIB}/IPython/html/services/notebooks/__init__.py -${PYSITELIB}/IPython/html/services/notebooks/__init__.pyc -${PYSITELIB}/IPython/html/services/notebooks/__init__.pyo -${PYSITELIB}/IPython/html/services/notebooks/filenbmanager.pyc -${PYSITELIB}/IPython/html/services/notebooks/filenbmanager.pyo -${PYSITELIB}/IPython/html/services/notebooks/handlers.pyc -${PYSITELIB}/IPython/html/services/notebooks/handlers.pyo -${PYSITELIB}/IPython/html/services/notebooks/nbmanager.pyc -${PYSITELIB}/IPython/html/services/notebooks/nbmanager.pyo -${PYSITELIB}/IPython/html/services/notebooks/filenbmanager.py -${PYSITELIB}/IPython/html/services/notebooks/handlers.py -${PYSITELIB}/IPython/html/services/notebooks/nbmanager.py -${PYSITELIB}/IPython/html/services/notebooks/tests/__init__.py -${PYSITELIB}/IPython/html/services/notebooks/tests/__init__.pyc -${PYSITELIB}/IPython/html/services/notebooks/tests/__init__.pyo -${PYSITELIB}/IPython/html/services/notebooks/tests/test_nbmanager.pyc -${PYSITELIB}/IPython/html/services/notebooks/tests/test_nbmanager.pyo -${PYSITELIB}/IPython/html/services/notebooks/tests/test_notebooks_api.pyc -${PYSITELIB}/IPython/html/services/notebooks/tests/test_notebooks_api.pyo -${PYSITELIB}/IPython/html/services/notebooks/tests/test_nbmanager.py -${PYSITELIB}/IPython/html/services/notebooks/tests/test_notebooks_api.py +${PYSITELIB}/IPython/html/services/security/__init__.py +${PYSITELIB}/IPython/html/services/security/__init__.pyc +${PYSITELIB}/IPython/html/services/security/__init__.pyo +${PYSITELIB}/IPython/html/services/security/handlers.py +${PYSITELIB}/IPython/html/services/security/handlers.pyc +${PYSITELIB}/IPython/html/services/security/handlers.pyo ${PYSITELIB}/IPython/html/services/sessions/__init__.py ${PYSITELIB}/IPython/html/services/sessions/__init__.pyc ${PYSITELIB}/IPython/html/services/sessions/__init__.pyo +${PYSITELIB}/IPython/html/services/sessions/handlers.py ${PYSITELIB}/IPython/html/services/sessions/handlers.pyc ${PYSITELIB}/IPython/html/services/sessions/handlers.pyo +${PYSITELIB}/IPython/html/services/sessions/sessionmanager.py ${PYSITELIB}/IPython/html/services/sessions/sessionmanager.pyc ${PYSITELIB}/IPython/html/services/sessions/sessionmanager.pyo -${PYSITELIB}/IPython/html/services/sessions/handlers.py -${PYSITELIB}/IPython/html/services/sessions/sessionmanager.py ${PYSITELIB}/IPython/html/services/sessions/tests/__init__.py ${PYSITELIB}/IPython/html/services/sessions/tests/__init__.pyc ${PYSITELIB}/IPython/html/services/sessions/tests/__init__.pyo +${PYSITELIB}/IPython/html/services/sessions/tests/test_sessionmanager.py ${PYSITELIB}/IPython/html/services/sessions/tests/test_sessionmanager.pyc ${PYSITELIB}/IPython/html/services/sessions/tests/test_sessionmanager.pyo +${PYSITELIB}/IPython/html/services/sessions/tests/test_sessions_api.py ${PYSITELIB}/IPython/html/services/sessions/tests/test_sessions_api.pyc ${PYSITELIB}/IPython/html/services/sessions/tests/test_sessions_api.pyo -${PYSITELIB}/IPython/html/services/sessions/tests/test_sessionmanager.py -${PYSITELIB}/IPython/html/services/sessions/tests/test_sessions_api.py ${PYSITELIB}/IPython/html/static/auth/css/override.css ${PYSITELIB}/IPython/html/static/auth/js/loginmain.js ${PYSITELIB}/IPython/html/static/auth/js/loginwidget.js ${PYSITELIB}/IPython/html/static/auth/js/logoutmain.js ${PYSITELIB}/IPython/html/static/base/images/favicon.ico -${PYSITELIB}/IPython/html/static/base/images/ipynblogo.png -${PYSITELIB}/IPython/html/static/base/images/ipynblogo.svg +${PYSITELIB}/IPython/html/static/base/images/logo.png ${PYSITELIB}/IPython/html/static/base/js/dialog.js ${PYSITELIB}/IPython/html/static/base/js/events.js ${PYSITELIB}/IPython/html/static/base/js/keyboard.js ${PYSITELIB}/IPython/html/static/base/js/namespace.js +${PYSITELIB}/IPython/html/static/base/js/notificationarea.js +${PYSITELIB}/IPython/html/static/base/js/notificationwidget.js ${PYSITELIB}/IPython/html/static/base/js/page.js -${PYSITELIB}/IPython/html/static/base/js/pagemain.js ${PYSITELIB}/IPython/html/static/base/js/security.js ${PYSITELIB}/IPython/html/static/base/js/utils.js ${PYSITELIB}/IPython/html/static/components/backbone/backbone-min.js ${PYSITELIB}/IPython/html/static/components/bootstrap-tour/build/css/bootstrap-tour.min.css ${PYSITELIB}/IPython/html/static/components/bootstrap-tour/build/js/bootstrap-tour.min.js -${PYSITELIB}/IPython/html/static/components/bootstrap/bootstrap/js/bootstrap.min.js +${PYSITELIB}/IPython/html/static/components/bootstrap/js/bootstrap.min.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/comment/comment.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/comment/continuecomment.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/dialog/dialog.css ${PYSITELIB}/IPython/html/static/components/codemirror/addon/dialog/dialog.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/display/fullscreen.css ${PYSITELIB}/IPython/html/static/components/codemirror/addon/display/fullscreen.js +${PYSITELIB}/IPython/html/static/components/codemirror/addon/display/panel.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/display/placeholder.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/display/rulers.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/edit/closebrackets.js @@ -677,8 +709,6 @@ ${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/anyword-hint.j ${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/css-hint.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/html-hint.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/javascript-hint.js -${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/pig-hint.js -${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/python-hint.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/show-hint.css ${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/show-hint.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/sql-hint.js @@ -690,19 +720,24 @@ ${PYSITELIB}/IPython/html/static/components/codemirror/addon/lint/json-lint.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/lint/lint.css ${PYSITELIB}/IPython/html/static/components/codemirror/addon/lint/lint.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/lint/yaml-lint.js -${PYSITELIB}/IPython/html/static/components/codemirror/addon/merge/dep/diff_match_patch.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/merge/merge.css ${PYSITELIB}/IPython/html/static/components/codemirror/addon/merge/merge.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/mode/loadmode.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/mode/multiplex.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/mode/multiplex_test.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/mode/overlay.js +${PYSITELIB}/IPython/html/static/components/codemirror/addon/mode/simple.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/runmode/colorize.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/runmode/runmode-standalone.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/runmode/runmode.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/runmode/runmode.node.js +${PYSITELIB}/IPython/html/static/components/codemirror/addon/scroll/annotatescrollbar.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/scroll/scrollpastend.js +${PYSITELIB}/IPython/html/static/components/codemirror/addon/scroll/simplescrollbars.css +${PYSITELIB}/IPython/html/static/components/codemirror/addon/scroll/simplescrollbars.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/search/match-highlighter.js +${PYSITELIB}/IPython/html/static/components/codemirror/addon/search/matchesonscrollbar.css +${PYSITELIB}/IPython/html/static/components/codemirror/addon/search/matchesonscrollbar.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/search/search.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/search/searchcursor.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/selection/active-line.js @@ -712,7 +747,7 @@ ${PYSITELIB}/IPython/html/static/components/codemirror/addon/tern/tern.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/tern/worker.js ${PYSITELIB}/IPython/html/static/components/codemirror/addon/wrap/hardwrap.js ${PYSITELIB}/IPython/html/static/components/codemirror/keymap/emacs.js -${PYSITELIB}/IPython/html/static/components/codemirror/keymap/extra.js +${PYSITELIB}/IPython/html/static/components/codemirror/keymap/sublime.js ${PYSITELIB}/IPython/html/static/components/codemirror/keymap/vim.js ${PYSITELIB}/IPython/html/static/components/codemirror/lib/codemirror.css ${PYSITELIB}/IPython/html/static/components/codemirror/lib/codemirror.js @@ -727,9 +762,15 @@ ${PYSITELIB}/IPython/html/static/components/codemirror/mode/css/css.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/css/less_test.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/css/scss_test.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/css/test.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/cypher/cypher.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/d/d.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/dart/dart.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/diff/diff.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/django/django.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/dockerfile/dockerfile.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/dtd/dtd.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/dylan/dylan.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/ebnf/ebnf.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/ecl/ecl.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/eiffel/eiffel.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/erlang/erlang.js @@ -747,12 +788,13 @@ ${PYSITELIB}/IPython/html/static/components/codemirror/mode/haxe/haxe.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/htmlembedded/htmlembedded.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/htmlmixed/htmlmixed.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/http/http.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/idl/idl.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/jade/jade.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/javascript/javascript.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/javascript/test.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/jinja2/jinja2.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/julia/julia.js -${PYSITELIB}/IPython/html/static/components/codemirror/mode/less/less.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/kotlin/kotlin.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/livescript/livescript.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/lua/lua.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/markdown/markdown.js @@ -760,6 +802,7 @@ ${PYSITELIB}/IPython/html/static/components/codemirror/mode/markdown/test.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/meta.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/mirc/mirc.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/mllike/mllike.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/modelica/modelica.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/nginx/nginx.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/ntriples/ntriples.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/octave/octave.js @@ -767,15 +810,14 @@ ${PYSITELIB}/IPython/html/static/components/codemirror/mode/pascal/pascal.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/pegjs/pegjs.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/perl/perl.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/php/php.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/php/test.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/pig/pig.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/properties/properties.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/puppet/puppet.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/python/python.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/q/q.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/r/r.js -${PYSITELIB}/IPython/html/static/components/codemirror/mode/rpm/changes/changes.js -${PYSITELIB}/IPython/html/static/components/codemirror/mode/rpm/spec/spec.css -${PYSITELIB}/IPython/html/static/components/codemirror/mode/rpm/spec/spec.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/rpm/rpm.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/rst/rst.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/ruby/ruby.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/ruby/test.js @@ -783,26 +825,36 @@ ${PYSITELIB}/IPython/html/static/components/codemirror/mode/rust/rust.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/sass/sass.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/scheme/scheme.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/shell/shell.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/shell/test.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/sieve/sieve.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/slim/slim.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/slim/test.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/smalltalk/smalltalk.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/smarty/smarty.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/smartymixed/smartymixed.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/solr/solr.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/soy/soy.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/sparql/sparql.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/spreadsheet/spreadsheet.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/sql/sql.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/stex/stex.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/stex/test.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/tcl/tcl.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/textile/test.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/textile/textile.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/tiddlywiki/tiddlywiki.css ${PYSITELIB}/IPython/html/static/components/codemirror/mode/tiddlywiki/tiddlywiki.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/tiki/tiki.css ${PYSITELIB}/IPython/html/static/components/codemirror/mode/tiki/tiki.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/toml/toml.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/tornado/tornado.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/turtle/turtle.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/vb/vb.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/vbscript/vbscript.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/velocity/velocity.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/verilog/test.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/verilog/verilog.js +${PYSITELIB}/IPython/html/static/components/codemirror/mode/xml/test.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/xml/xml.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/xquery/test.js ${PYSITELIB}/IPython/html/static/components/codemirror/mode/xquery/xquery.js @@ -825,6 +877,7 @@ ${PYSITELIB}/IPython/html/static/components/codemirror/theme/mdn-like.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/midnight.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/monokai.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/neat.css +${PYSITELIB}/IPython/html/static/components/codemirror/theme/neo.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/night.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/paraiso-dark.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/paraiso-light.css @@ -832,18 +885,22 @@ ${PYSITELIB}/IPython/html/static/components/codemirror/theme/pastel-on-dark.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/rubyblue.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/solarized.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/the-matrix.css +${PYSITELIB}/IPython/html/static/components/codemirror/theme/tomorrow-night-bright.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/tomorrow-night-eighties.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/twilight.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/vibrant-ink.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/xq-dark.css ${PYSITELIB}/IPython/html/static/components/codemirror/theme/xq-light.css -${PYSITELIB}/IPython/html/static/components/font-awesome/font/FontAwesome.otf -${PYSITELIB}/IPython/html/static/components/font-awesome/font/fontawesome-webfont.eot -${PYSITELIB}/IPython/html/static/components/font-awesome/font/fontawesome-webfont.svg -${PYSITELIB}/IPython/html/static/components/font-awesome/font/fontawesome-webfont.ttf -${PYSITELIB}/IPython/html/static/components/font-awesome/font/fontawesome-webfont.woff +${PYSITELIB}/IPython/html/static/components/codemirror/theme/zenburn.css +${PYSITELIB}/IPython/html/static/components/es6-promise/promise.js +${PYSITELIB}/IPython/html/static/components/es6-promise/promise.min.js +${PYSITELIB}/IPython/html/static/components/font-awesome/fonts/FontAwesome.otf +${PYSITELIB}/IPython/html/static/components/font-awesome/fonts/fontawesome-webfont.eot +${PYSITELIB}/IPython/html/static/components/font-awesome/fonts/fontawesome-webfont.svg +${PYSITELIB}/IPython/html/static/components/font-awesome/fonts/fontawesome-webfont.ttf +${PYSITELIB}/IPython/html/static/components/font-awesome/fonts/fontawesome-webfont.woff +${PYSITELIB}/IPython/html/static/components/font-awesome/fonts/fontawesome-webfont.woff2 ${PYSITELIB}/IPython/html/static/components/google-caja/html-css-sanitizer-minified.js -${PYSITELIB}/IPython/html/static/components/highlight.js/build/highlight.pack.js ${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/animated-overlay.gif ${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png ${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png @@ -862,12 +919,22 @@ ${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/jquery-u ${PYSITELIB}/IPython/html/static/components/jquery-ui/ui/minified/jquery-ui.min.js ${PYSITELIB}/IPython/html/static/components/jquery/jquery.min.js ${PYSITELIB}/IPython/html/static/components/marked/lib/marked.js +${PYSITELIB}/IPython/html/static/components/moment/min/moment.min.js +${PYSITELIB}/IPython/html/static/components/moment/moment.js ${PYSITELIB}/IPython/html/static/components/requirejs/require.js +${PYSITELIB}/IPython/html/static/components/term.js/src/term.js +${PYSITELIB}/IPython/html/static/components/text-encoding/lib/encoding.js ${PYSITELIB}/IPython/html/static/components/underscore/underscore-min.js ${PYSITELIB}/IPython/html/static/custom/custom.css ${PYSITELIB}/IPython/html/static/custom/custom.js -${PYSITELIB}/IPython/html/static/dateformat/date.format.js +${PYSITELIB}/IPython/html/static/edit/js/editor.js +${PYSITELIB}/IPython/html/static/edit/js/main.js +${PYSITELIB}/IPython/html/static/edit/js/menubar.js +${PYSITELIB}/IPython/html/static/edit/js/notificationarea.js +${PYSITELIB}/IPython/html/static/edit/js/savewidget.js ${PYSITELIB}/IPython/html/static/notebook/css/override.css +${PYSITELIB}/IPython/html/static/notebook/js/about.js +${PYSITELIB}/IPython/html/static/notebook/js/actions.js ${PYSITELIB}/IPython/html/static/notebook/js/cell.js ${PYSITELIB}/IPython/html/static/notebook/js/celltoolbar.js ${PYSITELIB}/IPython/html/static/notebook/js/celltoolbarpresets/default.js @@ -876,75 +943,95 @@ ${PYSITELIB}/IPython/html/static/notebook/js/celltoolbarpresets/rawcell.js ${PYSITELIB}/IPython/html/static/notebook/js/celltoolbarpresets/slideshow.js ${PYSITELIB}/IPython/html/static/notebook/js/codecell.js ${PYSITELIB}/IPython/html/static/notebook/js/codemirror-ipython.js +${PYSITELIB}/IPython/html/static/notebook/js/codemirror-ipythongfm.js ${PYSITELIB}/IPython/html/static/notebook/js/completer.js -${PYSITELIB}/IPython/html/static/notebook/js/config.js ${PYSITELIB}/IPython/html/static/notebook/js/contexthint.js +${PYSITELIB}/IPython/html/static/notebook/js/kernelselector.js ${PYSITELIB}/IPython/html/static/notebook/js/keyboardmanager.js -${PYSITELIB}/IPython/html/static/notebook/js/layoutmanager.js ${PYSITELIB}/IPython/html/static/notebook/js/main.js ${PYSITELIB}/IPython/html/static/notebook/js/maintoolbar.js ${PYSITELIB}/IPython/html/static/notebook/js/mathjaxutils.js ${PYSITELIB}/IPython/html/static/notebook/js/menubar.js ${PYSITELIB}/IPython/html/static/notebook/js/notebook.js ${PYSITELIB}/IPython/html/static/notebook/js/notificationarea.js -${PYSITELIB}/IPython/html/static/notebook/js/notificationwidget.js ${PYSITELIB}/IPython/html/static/notebook/js/outputarea.js ${PYSITELIB}/IPython/html/static/notebook/js/pager.js ${PYSITELIB}/IPython/html/static/notebook/js/quickhelp.js ${PYSITELIB}/IPython/html/static/notebook/js/savewidget.js +${PYSITELIB}/IPython/html/static/notebook/js/scrollmanager.js ${PYSITELIB}/IPython/html/static/notebook/js/textcell.js ${PYSITELIB}/IPython/html/static/notebook/js/toolbar.js ${PYSITELIB}/IPython/html/static/notebook/js/tooltip.js ${PYSITELIB}/IPython/html/static/notebook/js/tour.js -${PYSITELIB}/IPython/html/static/services/kernels/js/comm.js -${PYSITELIB}/IPython/html/static/services/kernels/js/kernel.js -${PYSITELIB}/IPython/html/static/services/sessions/js/session.js +${PYSITELIB}/IPython/html/static/services/config.js +${PYSITELIB}/IPython/html/static/services/contents.js +${PYSITELIB}/IPython/html/static/services/kernels/comm.js +${PYSITELIB}/IPython/html/static/services/kernels/kernel.js +${PYSITELIB}/IPython/html/static/services/kernels/serialize.js +${PYSITELIB}/IPython/html/static/services/sessions/session.js ${PYSITELIB}/IPython/html/static/style/ipython.less ${PYSITELIB}/IPython/html/static/style/ipython.min.css +${PYSITELIB}/IPython/html/static/style/ipython.min.css.map ${PYSITELIB}/IPython/html/static/style/style.less ${PYSITELIB}/IPython/html/static/style/style.min.css -${PYSITELIB}/IPython/html/static/tree/css/override.css +${PYSITELIB}/IPython/html/static/style/style.min.css.map +${PYSITELIB}/IPython/html/static/terminal/css/override.css +${PYSITELIB}/IPython/html/static/terminal/js/main.js +${PYSITELIB}/IPython/html/static/terminal/js/terminado.js ${PYSITELIB}/IPython/html/static/tree/js/clusterlist.js ${PYSITELIB}/IPython/html/static/tree/js/kernellist.js ${PYSITELIB}/IPython/html/static/tree/js/main.js +${PYSITELIB}/IPython/html/static/tree/js/newnotebook.js ${PYSITELIB}/IPython/html/static/tree/js/notebooklist.js ${PYSITELIB}/IPython/html/static/tree/js/sessionlist.js +${PYSITELIB}/IPython/html/static/tree/js/terminallist.js ${PYSITELIB}/IPython/html/static/widgets/js/init.js ${PYSITELIB}/IPython/html/static/widgets/js/manager.js ${PYSITELIB}/IPython/html/static/widgets/js/widget.js ${PYSITELIB}/IPython/html/static/widgets/js/widget_bool.js +${PYSITELIB}/IPython/html/static/widgets/js/widget_box.js ${PYSITELIB}/IPython/html/static/widgets/js/widget_button.js -${PYSITELIB}/IPython/html/static/widgets/js/widget_container.js ${PYSITELIB}/IPython/html/static/widgets/js/widget_float.js ${PYSITELIB}/IPython/html/static/widgets/js/widget_image.js ${PYSITELIB}/IPython/html/static/widgets/js/widget_int.js +${PYSITELIB}/IPython/html/static/widgets/js/widget_link.js +${PYSITELIB}/IPython/html/static/widgets/js/widget_output.js ${PYSITELIB}/IPython/html/static/widgets/js/widget_selection.js ${PYSITELIB}/IPython/html/static/widgets/js/widget_selectioncontainer.js ${PYSITELIB}/IPython/html/static/widgets/js/widget_string.js +${PYSITELIB}/IPython/html/tasks.py +${PYSITELIB}/IPython/html/tasks.pyc +${PYSITELIB}/IPython/html/tasks.pyo ${PYSITELIB}/IPython/html/templates/404.html +${PYSITELIB}/IPython/html/templates/edit.html ${PYSITELIB}/IPython/html/templates/error.html ${PYSITELIB}/IPython/html/templates/login.html ${PYSITELIB}/IPython/html/templates/logout.html ${PYSITELIB}/IPython/html/templates/notebook.html ${PYSITELIB}/IPython/html/templates/page.html +${PYSITELIB}/IPython/html/templates/terminal.html ${PYSITELIB}/IPython/html/templates/tree.html +${PYSITELIB}/IPython/html/terminal/__init__.py +${PYSITELIB}/IPython/html/terminal/__init__.pyc +${PYSITELIB}/IPython/html/terminal/__init__.pyo +${PYSITELIB}/IPython/html/terminal/api_handlers.py +${PYSITELIB}/IPython/html/terminal/api_handlers.pyc +${PYSITELIB}/IPython/html/terminal/api_handlers.pyo +${PYSITELIB}/IPython/html/terminal/handlers.py +${PYSITELIB}/IPython/html/terminal/handlers.pyc +${PYSITELIB}/IPython/html/terminal/handlers.pyo ${PYSITELIB}/IPython/html/tests/__init__.py ${PYSITELIB}/IPython/html/tests/__init__.pyc ${PYSITELIB}/IPython/html/tests/__init__.pyo -${PYSITELIB}/IPython/html/tests/launchnotebook.pyc -${PYSITELIB}/IPython/html/tests/launchnotebook.pyo -${PYSITELIB}/IPython/html/tests/test_files.pyc -${PYSITELIB}/IPython/html/tests/test_files.pyo -${PYSITELIB}/IPython/html/tests/test_nbextensions.pyc -${PYSITELIB}/IPython/html/tests/test_nbextensions.pyo -${PYSITELIB}/IPython/html/tests/test_notebookapp.pyc -${PYSITELIB}/IPython/html/tests/test_notebookapp.pyo -${PYSITELIB}/IPython/html/tests/test_utils.pyc -${PYSITELIB}/IPython/html/tests/test_utils.pyo +${PYSITELIB}/IPython/html/tests/base/highlight.js ${PYSITELIB}/IPython/html/tests/base/keyboard.js ${PYSITELIB}/IPython/html/tests/base/misc.js ${PYSITELIB}/IPython/html/tests/base/security.js +${PYSITELIB}/IPython/html/tests/base/utils.js ${PYSITELIB}/IPython/html/tests/launchnotebook.py +${PYSITELIB}/IPython/html/tests/launchnotebook.pyc +${PYSITELIB}/IPython/html/tests/launchnotebook.pyo +${PYSITELIB}/IPython/html/tests/notebook/deletecell.js ${PYSITELIB}/IPython/html/tests/notebook/display_image.js ${PYSITELIB}/IPython/html/tests/notebook/dualmode.js ${PYSITELIB}/IPython/html/tests/notebook/dualmode_arrows.js @@ -954,7 +1041,6 @@ ${PYSITELIB}/IPython/html/tests/notebook/dualmode_clipboard.js ${PYSITELIB}/IPython/html/tests/notebook/dualmode_execute.js ${PYSITELIB}/IPython/html/tests/notebook/dualmode_markdown.js ${PYSITELIB}/IPython/html/tests/notebook/dualmode_merge.js -${PYSITELIB}/IPython/html/tests/notebook/dualmode_movecell.js ${PYSITELIB}/IPython/html/tests/notebook/empty_arrow_keys.js ${PYSITELIB}/IPython/html/tests/notebook/execute_code.js ${PYSITELIB}/IPython/html/tests/notebook/inject_js.js @@ -962,22 +1048,41 @@ ${PYSITELIB}/IPython/html/tests/notebook/interrupt.js ${PYSITELIB}/IPython/html/tests/notebook/isolated_svg.js ${PYSITELIB}/IPython/html/tests/notebook/markdown.js ${PYSITELIB}/IPython/html/tests/notebook/merge_cells_api.js +${PYSITELIB}/IPython/html/tests/notebook/notifications.js +${PYSITELIB}/IPython/html/tests/notebook/output.js +${PYSITELIB}/IPython/html/tests/notebook/prompt_numbers.js ${PYSITELIB}/IPython/html/tests/notebook/roundtrip.js ${PYSITELIB}/IPython/html/tests/notebook/safe_append_output.js ${PYSITELIB}/IPython/html/tests/notebook/save.js ${PYSITELIB}/IPython/html/tests/notebook/shutdown.js -${PYSITELIB}/IPython/html/tests/notebook/tooltip.js ${PYSITELIB}/IPython/html/tests/services/kernel.js +${PYSITELIB}/IPython/html/tests/services/serialize.js +${PYSITELIB}/IPython/html/tests/services/session.js ${PYSITELIB}/IPython/html/tests/test_files.py +${PYSITELIB}/IPython/html/tests/test_files.pyc +${PYSITELIB}/IPython/html/tests/test_files.pyo ${PYSITELIB}/IPython/html/tests/test_nbextensions.py +${PYSITELIB}/IPython/html/tests/test_nbextensions.pyc +${PYSITELIB}/IPython/html/tests/test_nbextensions.pyo ${PYSITELIB}/IPython/html/tests/test_notebookapp.py +${PYSITELIB}/IPython/html/tests/test_notebookapp.pyc +${PYSITELIB}/IPython/html/tests/test_notebookapp.pyo +${PYSITELIB}/IPython/html/tests/test_paths.py +${PYSITELIB}/IPython/html/tests/test_paths.pyc +${PYSITELIB}/IPython/html/tests/test_paths.pyo +${PYSITELIB}/IPython/html/tests/test_serialize.py +${PYSITELIB}/IPython/html/tests/test_serialize.pyc +${PYSITELIB}/IPython/html/tests/test_serialize.pyo ${PYSITELIB}/IPython/html/tests/test_utils.py +${PYSITELIB}/IPython/html/tests/test_utils.pyc +${PYSITELIB}/IPython/html/tests/test_utils.pyo ${PYSITELIB}/IPython/html/tests/tree/dashboard_nav.js ${PYSITELIB}/IPython/html/tests/util.js +${PYSITELIB}/IPython/html/tests/widgets/manager.js ${PYSITELIB}/IPython/html/tests/widgets/widget.js ${PYSITELIB}/IPython/html/tests/widgets/widget_bool.js +${PYSITELIB}/IPython/html/tests/widgets/widget_box.js ${PYSITELIB}/IPython/html/tests/widgets/widget_button.js -${PYSITELIB}/IPython/html/tests/widgets/widget_container.js ${PYSITELIB}/IPython/html/tests/widgets/widget_float.js ${PYSITELIB}/IPython/html/tests/widgets/widget_image.js ${PYSITELIB}/IPython/html/tests/widgets/widget_int.js @@ -987,530 +1092,624 @@ ${PYSITELIB}/IPython/html/tests/widgets/widget_string.js ${PYSITELIB}/IPython/html/tree/__init__.py ${PYSITELIB}/IPython/html/tree/__init__.pyc ${PYSITELIB}/IPython/html/tree/__init__.pyo +${PYSITELIB}/IPython/html/tree/handlers.py ${PYSITELIB}/IPython/html/tree/handlers.pyc ${PYSITELIB}/IPython/html/tree/handlers.pyo -${PYSITELIB}/IPython/html/tree/handlers.py +${PYSITELIB}/IPython/html/tree/tests/__init__.py +${PYSITELIB}/IPython/html/tree/tests/__init__.pyc +${PYSITELIB}/IPython/html/tree/tests/__init__.pyo +${PYSITELIB}/IPython/html/tree/tests/test_tree_handler.py +${PYSITELIB}/IPython/html/tree/tests/test_tree_handler.pyc +${PYSITELIB}/IPython/html/tree/tests/test_tree_handler.pyo ${PYSITELIB}/IPython/html/utils.py +${PYSITELIB}/IPython/html/utils.pyc +${PYSITELIB}/IPython/html/utils.pyo ${PYSITELIB}/IPython/html/widgets/__init__.py ${PYSITELIB}/IPython/html/widgets/__init__.pyc ${PYSITELIB}/IPython/html/widgets/__init__.pyo +${PYSITELIB}/IPython/html/widgets/interaction.py ${PYSITELIB}/IPython/html/widgets/interaction.pyc ${PYSITELIB}/IPython/html/widgets/interaction.pyo +${PYSITELIB}/IPython/html/widgets/tests/__init__.py +${PYSITELIB}/IPython/html/widgets/tests/__init__.pyc +${PYSITELIB}/IPython/html/widgets/tests/__init__.pyo +${PYSITELIB}/IPython/html/widgets/tests/test_interaction.py +${PYSITELIB}/IPython/html/widgets/tests/test_interaction.pyc +${PYSITELIB}/IPython/html/widgets/tests/test_interaction.pyo +${PYSITELIB}/IPython/html/widgets/tests/test_link.py +${PYSITELIB}/IPython/html/widgets/tests/test_link.pyc +${PYSITELIB}/IPython/html/widgets/tests/test_link.pyo +${PYSITELIB}/IPython/html/widgets/tests/test_traits.py +${PYSITELIB}/IPython/html/widgets/tests/test_traits.pyc +${PYSITELIB}/IPython/html/widgets/tests/test_traits.pyo +${PYSITELIB}/IPython/html/widgets/trait_types.py +${PYSITELIB}/IPython/html/widgets/trait_types.pyc +${PYSITELIB}/IPython/html/widgets/trait_types.pyo +${PYSITELIB}/IPython/html/widgets/widget.py ${PYSITELIB}/IPython/html/widgets/widget.pyc ${PYSITELIB}/IPython/html/widgets/widget.pyo +${PYSITELIB}/IPython/html/widgets/widget_bool.py ${PYSITELIB}/IPython/html/widgets/widget_bool.pyc ${PYSITELIB}/IPython/html/widgets/widget_bool.pyo +${PYSITELIB}/IPython/html/widgets/widget_box.py +${PYSITELIB}/IPython/html/widgets/widget_box.pyc +${PYSITELIB}/IPython/html/widgets/widget_box.pyo +${PYSITELIB}/IPython/html/widgets/widget_button.py ${PYSITELIB}/IPython/html/widgets/widget_button.pyc ${PYSITELIB}/IPython/html/widgets/widget_button.pyo -${PYSITELIB}/IPython/html/widgets/widget_container.pyc -${PYSITELIB}/IPython/html/widgets/widget_container.pyo +${PYSITELIB}/IPython/html/widgets/widget_float.py ${PYSITELIB}/IPython/html/widgets/widget_float.pyc ${PYSITELIB}/IPython/html/widgets/widget_float.pyo +${PYSITELIB}/IPython/html/widgets/widget_image.py ${PYSITELIB}/IPython/html/widgets/widget_image.pyc ${PYSITELIB}/IPython/html/widgets/widget_image.pyo +${PYSITELIB}/IPython/html/widgets/widget_int.py ${PYSITELIB}/IPython/html/widgets/widget_int.pyc ${PYSITELIB}/IPython/html/widgets/widget_int.pyo +${PYSITELIB}/IPython/html/widgets/widget_link.py +${PYSITELIB}/IPython/html/widgets/widget_link.pyc +${PYSITELIB}/IPython/html/widgets/widget_link.pyo +${PYSITELIB}/IPython/html/widgets/widget_output.py +${PYSITELIB}/IPython/html/widgets/widget_output.pyc +${PYSITELIB}/IPython/html/widgets/widget_output.pyo +${PYSITELIB}/IPython/html/widgets/widget_selection.py ${PYSITELIB}/IPython/html/widgets/widget_selection.pyc ${PYSITELIB}/IPython/html/widgets/widget_selection.pyo +${PYSITELIB}/IPython/html/widgets/widget_selectioncontainer.py ${PYSITELIB}/IPython/html/widgets/widget_selectioncontainer.pyc ${PYSITELIB}/IPython/html/widgets/widget_selectioncontainer.pyo +${PYSITELIB}/IPython/html/widgets/widget_string.py ${PYSITELIB}/IPython/html/widgets/widget_string.pyc ${PYSITELIB}/IPython/html/widgets/widget_string.pyo -${PYSITELIB}/IPython/html/widgets/interaction.py -${PYSITELIB}/IPython/html/widgets/tests/__init__.py -${PYSITELIB}/IPython/html/widgets/tests/__init__.pyc -${PYSITELIB}/IPython/html/widgets/tests/__init__.pyo -${PYSITELIB}/IPython/html/widgets/tests/test_interaction.pyc -${PYSITELIB}/IPython/html/widgets/tests/test_interaction.pyo -${PYSITELIB}/IPython/html/widgets/tests/test_interaction.py -${PYSITELIB}/IPython/html/widgets/widget.py -${PYSITELIB}/IPython/html/widgets/widget_bool.py -${PYSITELIB}/IPython/html/widgets/widget_button.py -${PYSITELIB}/IPython/html/widgets/widget_container.py -${PYSITELIB}/IPython/html/widgets/widget_float.py -${PYSITELIB}/IPython/html/widgets/widget_image.py -${PYSITELIB}/IPython/html/widgets/widget_int.py -${PYSITELIB}/IPython/html/widgets/widget_selection.py -${PYSITELIB}/IPython/html/widgets/widget_selectioncontainer.py -${PYSITELIB}/IPython/html/widgets/widget_string.py ${PYSITELIB}/IPython/kernel/__init__.py -${PYSITELIB}/IPython/kernel/__main__.py ${PYSITELIB}/IPython/kernel/__init__.pyc ${PYSITELIB}/IPython/kernel/__init__.pyo +${PYSITELIB}/IPython/kernel/__main__.py ${PYSITELIB}/IPython/kernel/__main__.pyc ${PYSITELIB}/IPython/kernel/__main__.pyo -${PYSITELIB}/IPython/kernel/channels.pyc -${PYSITELIB}/IPython/kernel/channels.pyo -${PYSITELIB}/IPython/kernel/channelsabc.pyc -${PYSITELIB}/IPython/kernel/channelsabc.pyo -${PYSITELIB}/IPython/kernel/client.pyc -${PYSITELIB}/IPython/kernel/client.pyo -${PYSITELIB}/IPython/kernel/clientabc.pyc -${PYSITELIB}/IPython/kernel/clientabc.pyo -${PYSITELIB}/IPython/kernel/connect.pyc -${PYSITELIB}/IPython/kernel/connect.pyo -${PYSITELIB}/IPython/kernel/launcher.pyc -${PYSITELIB}/IPython/kernel/launcher.pyo -${PYSITELIB}/IPython/kernel/manager.pyc -${PYSITELIB}/IPython/kernel/manager.pyo -${PYSITELIB}/IPython/kernel/managerabc.pyc -${PYSITELIB}/IPython/kernel/managerabc.pyo -${PYSITELIB}/IPython/kernel/multikernelmanager.pyc -${PYSITELIB}/IPython/kernel/multikernelmanager.pyo -${PYSITELIB}/IPython/kernel/restarter.pyc -${PYSITELIB}/IPython/kernel/restarter.pyo +${PYSITELIB}/IPython/kernel/adapter.py +${PYSITELIB}/IPython/kernel/adapter.pyc +${PYSITELIB}/IPython/kernel/adapter.pyo ${PYSITELIB}/IPython/kernel/blocking/__init__.py ${PYSITELIB}/IPython/kernel/blocking/__init__.pyc ${PYSITELIB}/IPython/kernel/blocking/__init__.pyo +${PYSITELIB}/IPython/kernel/blocking/channels.py ${PYSITELIB}/IPython/kernel/blocking/channels.pyc ${PYSITELIB}/IPython/kernel/blocking/channels.pyo +${PYSITELIB}/IPython/kernel/blocking/client.py ${PYSITELIB}/IPython/kernel/blocking/client.pyc ${PYSITELIB}/IPython/kernel/blocking/client.pyo -${PYSITELIB}/IPython/kernel/blocking/channels.py -${PYSITELIB}/IPython/kernel/blocking/client.py ${PYSITELIB}/IPython/kernel/channels.py +${PYSITELIB}/IPython/kernel/channels.pyc +${PYSITELIB}/IPython/kernel/channels.pyo ${PYSITELIB}/IPython/kernel/channelsabc.py +${PYSITELIB}/IPython/kernel/channelsabc.pyc +${PYSITELIB}/IPython/kernel/channelsabc.pyo ${PYSITELIB}/IPython/kernel/client.py +${PYSITELIB}/IPython/kernel/client.pyc +${PYSITELIB}/IPython/kernel/client.pyo ${PYSITELIB}/IPython/kernel/clientabc.py +${PYSITELIB}/IPython/kernel/clientabc.pyc +${PYSITELIB}/IPython/kernel/clientabc.pyo ${PYSITELIB}/IPython/kernel/comm/__init__.py ${PYSITELIB}/IPython/kernel/comm/__init__.pyc ${PYSITELIB}/IPython/kernel/comm/__init__.pyo +${PYSITELIB}/IPython/kernel/comm/comm.py ${PYSITELIB}/IPython/kernel/comm/comm.pyc ${PYSITELIB}/IPython/kernel/comm/comm.pyo +${PYSITELIB}/IPython/kernel/comm/manager.py ${PYSITELIB}/IPython/kernel/comm/manager.pyc ${PYSITELIB}/IPython/kernel/comm/manager.pyo -${PYSITELIB}/IPython/kernel/comm/comm.py -${PYSITELIB}/IPython/kernel/comm/manager.py ${PYSITELIB}/IPython/kernel/connect.py +${PYSITELIB}/IPython/kernel/connect.pyc +${PYSITELIB}/IPython/kernel/connect.pyo ${PYSITELIB}/IPython/kernel/inprocess/__init__.py ${PYSITELIB}/IPython/kernel/inprocess/__init__.pyc ${PYSITELIB}/IPython/kernel/inprocess/__init__.pyo +${PYSITELIB}/IPython/kernel/inprocess/blocking.py ${PYSITELIB}/IPython/kernel/inprocess/blocking.pyc ${PYSITELIB}/IPython/kernel/inprocess/blocking.pyo +${PYSITELIB}/IPython/kernel/inprocess/channels.py ${PYSITELIB}/IPython/kernel/inprocess/channels.pyc ${PYSITELIB}/IPython/kernel/inprocess/channels.pyo +${PYSITELIB}/IPython/kernel/inprocess/client.py ${PYSITELIB}/IPython/kernel/inprocess/client.pyc ${PYSITELIB}/IPython/kernel/inprocess/client.pyo +${PYSITELIB}/IPython/kernel/inprocess/ipkernel.py ${PYSITELIB}/IPython/kernel/inprocess/ipkernel.pyc ${PYSITELIB}/IPython/kernel/inprocess/ipkernel.pyo +${PYSITELIB}/IPython/kernel/inprocess/manager.py ${PYSITELIB}/IPython/kernel/inprocess/manager.pyc ${PYSITELIB}/IPython/kernel/inprocess/manager.pyo +${PYSITELIB}/IPython/kernel/inprocess/socket.py ${PYSITELIB}/IPython/kernel/inprocess/socket.pyc ${PYSITELIB}/IPython/kernel/inprocess/socket.pyo -${PYSITELIB}/IPython/kernel/inprocess/blocking.py -${PYSITELIB}/IPython/kernel/inprocess/channels.py -${PYSITELIB}/IPython/kernel/inprocess/client.py -${PYSITELIB}/IPython/kernel/inprocess/ipkernel.py -${PYSITELIB}/IPython/kernel/inprocess/manager.py -${PYSITELIB}/IPython/kernel/inprocess/socket.py ${PYSITELIB}/IPython/kernel/inprocess/tests/__init__.py ${PYSITELIB}/IPython/kernel/inprocess/tests/__init__.pyc ${PYSITELIB}/IPython/kernel/inprocess/tests/__init__.pyo +${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernel.py ${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernel.pyc ${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernel.pyo +${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernelmanager.py ${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernelmanager.pyc ${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernelmanager.pyo -${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernel.py -${PYSITELIB}/IPython/kernel/inprocess/tests/test_kernelmanager.py ${PYSITELIB}/IPython/kernel/ioloop/__init__.py ${PYSITELIB}/IPython/kernel/ioloop/__init__.pyc ${PYSITELIB}/IPython/kernel/ioloop/__init__.pyo +${PYSITELIB}/IPython/kernel/ioloop/manager.py ${PYSITELIB}/IPython/kernel/ioloop/manager.pyc ${PYSITELIB}/IPython/kernel/ioloop/manager.pyo +${PYSITELIB}/IPython/kernel/ioloop/restarter.py ${PYSITELIB}/IPython/kernel/ioloop/restarter.pyc ${PYSITELIB}/IPython/kernel/ioloop/restarter.pyo -${PYSITELIB}/IPython/kernel/ioloop/manager.py -${PYSITELIB}/IPython/kernel/ioloop/restarter.py +${PYSITELIB}/IPython/kernel/kernelspec.py +${PYSITELIB}/IPython/kernel/kernelspec.pyc +${PYSITELIB}/IPython/kernel/kernelspec.pyo +${PYSITELIB}/IPython/kernel/kernelspecapp.py +${PYSITELIB}/IPython/kernel/kernelspecapp.pyc +${PYSITELIB}/IPython/kernel/kernelspecapp.pyo ${PYSITELIB}/IPython/kernel/launcher.py +${PYSITELIB}/IPython/kernel/launcher.pyc +${PYSITELIB}/IPython/kernel/launcher.pyo ${PYSITELIB}/IPython/kernel/manager.py +${PYSITELIB}/IPython/kernel/manager.pyc +${PYSITELIB}/IPython/kernel/manager.pyo ${PYSITELIB}/IPython/kernel/managerabc.py +${PYSITELIB}/IPython/kernel/managerabc.pyc +${PYSITELIB}/IPython/kernel/managerabc.pyo ${PYSITELIB}/IPython/kernel/multikernelmanager.py +${PYSITELIB}/IPython/kernel/multikernelmanager.pyc +${PYSITELIB}/IPython/kernel/multikernelmanager.pyo +${PYSITELIB}/IPython/kernel/resources/logo-32x32.png +${PYSITELIB}/IPython/kernel/resources/logo-64x64.png ${PYSITELIB}/IPython/kernel/restarter.py +${PYSITELIB}/IPython/kernel/restarter.pyc +${PYSITELIB}/IPython/kernel/restarter.pyo ${PYSITELIB}/IPython/kernel/tests/__init__.py ${PYSITELIB}/IPython/kernel/tests/__init__.pyc ${PYSITELIB}/IPython/kernel/tests/__init__.pyo +${PYSITELIB}/IPython/kernel/tests/test_adapter.py +${PYSITELIB}/IPython/kernel/tests/test_adapter.pyc +${PYSITELIB}/IPython/kernel/tests/test_adapter.pyo +${PYSITELIB}/IPython/kernel/tests/test_connect.py ${PYSITELIB}/IPython/kernel/tests/test_connect.pyc ${PYSITELIB}/IPython/kernel/tests/test_connect.pyo +${PYSITELIB}/IPython/kernel/tests/test_kernel.py ${PYSITELIB}/IPython/kernel/tests/test_kernel.pyc ${PYSITELIB}/IPython/kernel/tests/test_kernel.pyo +${PYSITELIB}/IPython/kernel/tests/test_kernelmanager.py ${PYSITELIB}/IPython/kernel/tests/test_kernelmanager.pyc ${PYSITELIB}/IPython/kernel/tests/test_kernelmanager.pyo +${PYSITELIB}/IPython/kernel/tests/test_kernelspec.py +${PYSITELIB}/IPython/kernel/tests/test_kernelspec.pyc +${PYSITELIB}/IPython/kernel/tests/test_kernelspec.pyo +${PYSITELIB}/IPython/kernel/tests/test_launcher.py ${PYSITELIB}/IPython/kernel/tests/test_launcher.pyc ${PYSITELIB}/IPython/kernel/tests/test_launcher.pyo +${PYSITELIB}/IPython/kernel/tests/test_message_spec.py ${PYSITELIB}/IPython/kernel/tests/test_message_spec.pyc ${PYSITELIB}/IPython/kernel/tests/test_message_spec.pyo +${PYSITELIB}/IPython/kernel/tests/test_multikernelmanager.py ${PYSITELIB}/IPython/kernel/tests/test_multikernelmanager.pyc ${PYSITELIB}/IPython/kernel/tests/test_multikernelmanager.pyo +${PYSITELIB}/IPython/kernel/tests/test_public_api.py ${PYSITELIB}/IPython/kernel/tests/test_public_api.pyc ${PYSITELIB}/IPython/kernel/tests/test_public_api.pyo +${PYSITELIB}/IPython/kernel/tests/utils.py ${PYSITELIB}/IPython/kernel/tests/utils.pyc ${PYSITELIB}/IPython/kernel/tests/utils.pyo -${PYSITELIB}/IPython/kernel/tests/test_connect.py -${PYSITELIB}/IPython/kernel/tests/test_kernel.py -${PYSITELIB}/IPython/kernel/tests/test_kernelmanager.py -${PYSITELIB}/IPython/kernel/tests/test_launcher.py -${PYSITELIB}/IPython/kernel/tests/test_message_spec.py -${PYSITELIB}/IPython/kernel/tests/test_multikernelmanager.py -${PYSITELIB}/IPython/kernel/tests/test_public_api.py -${PYSITELIB}/IPython/kernel/tests/utils.py +${PYSITELIB}/IPython/kernel/threaded.py +${PYSITELIB}/IPython/kernel/threaded.pyc +${PYSITELIB}/IPython/kernel/threaded.pyo ${PYSITELIB}/IPython/kernel/zmq/__init__.py ${PYSITELIB}/IPython/kernel/zmq/__init__.pyc ${PYSITELIB}/IPython/kernel/zmq/__init__.pyo +${PYSITELIB}/IPython/kernel/zmq/datapub.py ${PYSITELIB}/IPython/kernel/zmq/datapub.pyc ${PYSITELIB}/IPython/kernel/zmq/datapub.pyo +${PYSITELIB}/IPython/kernel/zmq/displayhook.py ${PYSITELIB}/IPython/kernel/zmq/displayhook.pyc ${PYSITELIB}/IPython/kernel/zmq/displayhook.pyo +${PYSITELIB}/IPython/kernel/zmq/embed.py ${PYSITELIB}/IPython/kernel/zmq/embed.pyc ${PYSITELIB}/IPython/kernel/zmq/embed.pyo +${PYSITELIB}/IPython/kernel/zmq/eventloops.py ${PYSITELIB}/IPython/kernel/zmq/eventloops.pyc ${PYSITELIB}/IPython/kernel/zmq/eventloops.pyo +${PYSITELIB}/IPython/kernel/zmq/gui/__init__.py +${PYSITELIB}/IPython/kernel/zmq/gui/__init__.pyc +${PYSITELIB}/IPython/kernel/zmq/gui/__init__.pyo +${PYSITELIB}/IPython/kernel/zmq/gui/gtk3embed.py +${PYSITELIB}/IPython/kernel/zmq/gui/gtk3embed.pyc +${PYSITELIB}/IPython/kernel/zmq/gui/gtk3embed.pyo +${PYSITELIB}/IPython/kernel/zmq/gui/gtkembed.py +${PYSITELIB}/IPython/kernel/zmq/gui/gtkembed.pyc +${PYSITELIB}/IPython/kernel/zmq/gui/gtkembed.pyo +${PYSITELIB}/IPython/kernel/zmq/heartbeat.py ${PYSITELIB}/IPython/kernel/zmq/heartbeat.pyc ${PYSITELIB}/IPython/kernel/zmq/heartbeat.pyo +${PYSITELIB}/IPython/kernel/zmq/iostream.py ${PYSITELIB}/IPython/kernel/zmq/iostream.pyc ${PYSITELIB}/IPython/kernel/zmq/iostream.pyo +${PYSITELIB}/IPython/kernel/zmq/ipkernel.py ${PYSITELIB}/IPython/kernel/zmq/ipkernel.pyc ${PYSITELIB}/IPython/kernel/zmq/ipkernel.pyo +${PYSITELIB}/IPython/kernel/zmq/kernelapp.py ${PYSITELIB}/IPython/kernel/zmq/kernelapp.pyc ${PYSITELIB}/IPython/kernel/zmq/kernelapp.pyo +${PYSITELIB}/IPython/kernel/zmq/kernelbase.py +${PYSITELIB}/IPython/kernel/zmq/kernelbase.pyc +${PYSITELIB}/IPython/kernel/zmq/kernelbase.pyo +${PYSITELIB}/IPython/kernel/zmq/log.py ${PYSITELIB}/IPython/kernel/zmq/log.pyc ${PYSITELIB}/IPython/kernel/zmq/log.pyo +${PYSITELIB}/IPython/kernel/zmq/parentpoller.py ${PYSITELIB}/IPython/kernel/zmq/parentpoller.pyc ${PYSITELIB}/IPython/kernel/zmq/parentpoller.pyo -${PYSITELIB}/IPython/kernel/zmq/serialize.pyc -${PYSITELIB}/IPython/kernel/zmq/serialize.pyo -${PYSITELIB}/IPython/kernel/zmq/session.pyc -${PYSITELIB}/IPython/kernel/zmq/session.pyo -${PYSITELIB}/IPython/kernel/zmq/zmqshell.pyc -${PYSITELIB}/IPython/kernel/zmq/zmqshell.pyo -${PYSITELIB}/IPython/kernel/zmq/datapub.py -${PYSITELIB}/IPython/kernel/zmq/displayhook.py -${PYSITELIB}/IPython/kernel/zmq/embed.py -${PYSITELIB}/IPython/kernel/zmq/eventloops.py -${PYSITELIB}/IPython/kernel/zmq/gui/__init__.py -${PYSITELIB}/IPython/kernel/zmq/gui/__init__.pyc -${PYSITELIB}/IPython/kernel/zmq/gui/__init__.pyo -${PYSITELIB}/IPython/kernel/zmq/gui/gtkembed.pyc -${PYSITELIB}/IPython/kernel/zmq/gui/gtkembed.pyo -${PYSITELIB}/IPython/kernel/zmq/gui/gtkembed.py -${PYSITELIB}/IPython/kernel/zmq/heartbeat.py -${PYSITELIB}/IPython/kernel/zmq/iostream.py -${PYSITELIB}/IPython/kernel/zmq/ipkernel.py -${PYSITELIB}/IPython/kernel/zmq/kernelapp.py -${PYSITELIB}/IPython/kernel/zmq/log.py -${PYSITELIB}/IPython/kernel/zmq/parentpoller.py ${PYSITELIB}/IPython/kernel/zmq/pylab/__init__.py ${PYSITELIB}/IPython/kernel/zmq/pylab/__init__.pyc ${PYSITELIB}/IPython/kernel/zmq/pylab/__init__.pyo +${PYSITELIB}/IPython/kernel/zmq/pylab/backend_inline.py ${PYSITELIB}/IPython/kernel/zmq/pylab/backend_inline.pyc ${PYSITELIB}/IPython/kernel/zmq/pylab/backend_inline.pyo +${PYSITELIB}/IPython/kernel/zmq/pylab/config.py ${PYSITELIB}/IPython/kernel/zmq/pylab/config.pyc ${PYSITELIB}/IPython/kernel/zmq/pylab/config.pyo -${PYSITELIB}/IPython/kernel/zmq/pylab/backend_inline.py -${PYSITELIB}/IPython/kernel/zmq/pylab/config.py ${PYSITELIB}/IPython/kernel/zmq/serialize.py +${PYSITELIB}/IPython/kernel/zmq/serialize.pyc +${PYSITELIB}/IPython/kernel/zmq/serialize.pyo ${PYSITELIB}/IPython/kernel/zmq/session.py +${PYSITELIB}/IPython/kernel/zmq/session.pyc +${PYSITELIB}/IPython/kernel/zmq/session.pyo ${PYSITELIB}/IPython/kernel/zmq/tests/__init__.py ${PYSITELIB}/IPython/kernel/zmq/tests/__init__.pyc ${PYSITELIB}/IPython/kernel/zmq/tests/__init__.pyo +${PYSITELIB}/IPython/kernel/zmq/tests/test_embed_kernel.py ${PYSITELIB}/IPython/kernel/zmq/tests/test_embed_kernel.pyc ${PYSITELIB}/IPython/kernel/zmq/tests/test_embed_kernel.pyo +${PYSITELIB}/IPython/kernel/zmq/tests/test_serialize.py ${PYSITELIB}/IPython/kernel/zmq/tests/test_serialize.pyc ${PYSITELIB}/IPython/kernel/zmq/tests/test_serialize.pyo +${PYSITELIB}/IPython/kernel/zmq/tests/test_session.py ${PYSITELIB}/IPython/kernel/zmq/tests/test_session.pyc ${PYSITELIB}/IPython/kernel/zmq/tests/test_session.pyo +${PYSITELIB}/IPython/kernel/zmq/tests/test_start_kernel.py ${PYSITELIB}/IPython/kernel/zmq/tests/test_start_kernel.pyc ${PYSITELIB}/IPython/kernel/zmq/tests/test_start_kernel.pyo -${PYSITELIB}/IPython/kernel/zmq/tests/test_embed_kernel.py -${PYSITELIB}/IPython/kernel/zmq/tests/test_serialize.py -${PYSITELIB}/IPython/kernel/zmq/tests/test_session.py -${PYSITELIB}/IPython/kernel/zmq/tests/test_start_kernel.py ${PYSITELIB}/IPython/kernel/zmq/zmqshell.py +${PYSITELIB}/IPython/kernel/zmq/zmqshell.pyc +${PYSITELIB}/IPython/kernel/zmq/zmqshell.pyo ${PYSITELIB}/IPython/lib/__init__.py ${PYSITELIB}/IPython/lib/__init__.pyc ${PYSITELIB}/IPython/lib/__init__.pyo +${PYSITELIB}/IPython/lib/backgroundjobs.py ${PYSITELIB}/IPython/lib/backgroundjobs.pyc ${PYSITELIB}/IPython/lib/backgroundjobs.pyo +${PYSITELIB}/IPython/lib/clipboard.py ${PYSITELIB}/IPython/lib/clipboard.pyc ${PYSITELIB}/IPython/lib/clipboard.pyo +${PYSITELIB}/IPython/lib/deepreload.py ${PYSITELIB}/IPython/lib/deepreload.pyc ${PYSITELIB}/IPython/lib/deepreload.pyo +${PYSITELIB}/IPython/lib/demo.py ${PYSITELIB}/IPython/lib/demo.pyc ${PYSITELIB}/IPython/lib/demo.pyo +${PYSITELIB}/IPython/lib/display.py ${PYSITELIB}/IPython/lib/display.pyc ${PYSITELIB}/IPython/lib/display.pyo +${PYSITELIB}/IPython/lib/editorhooks.py ${PYSITELIB}/IPython/lib/editorhooks.pyc ${PYSITELIB}/IPython/lib/editorhooks.pyo +${PYSITELIB}/IPython/lib/guisupport.py ${PYSITELIB}/IPython/lib/guisupport.pyc ${PYSITELIB}/IPython/lib/guisupport.pyo +${PYSITELIB}/IPython/lib/inputhook.py ${PYSITELIB}/IPython/lib/inputhook.pyc ${PYSITELIB}/IPython/lib/inputhook.pyo +${PYSITELIB}/IPython/lib/inputhookglut.py ${PYSITELIB}/IPython/lib/inputhookglut.pyc ${PYSITELIB}/IPython/lib/inputhookglut.pyo +${PYSITELIB}/IPython/lib/inputhookgtk.py ${PYSITELIB}/IPython/lib/inputhookgtk.pyc ${PYSITELIB}/IPython/lib/inputhookgtk.pyo +${PYSITELIB}/IPython/lib/inputhookgtk3.py ${PYSITELIB}/IPython/lib/inputhookgtk3.pyc ${PYSITELIB}/IPython/lib/inputhookgtk3.pyo +${PYSITELIB}/IPython/lib/inputhookpyglet.py ${PYSITELIB}/IPython/lib/inputhookpyglet.pyc ${PYSITELIB}/IPython/lib/inputhookpyglet.pyo +${PYSITELIB}/IPython/lib/inputhookqt4.py ${PYSITELIB}/IPython/lib/inputhookqt4.pyc ${PYSITELIB}/IPython/lib/inputhookqt4.pyo +${PYSITELIB}/IPython/lib/inputhookwx.py ${PYSITELIB}/IPython/lib/inputhookwx.pyc ${PYSITELIB}/IPython/lib/inputhookwx.pyo +${PYSITELIB}/IPython/lib/kernel.py ${PYSITELIB}/IPython/lib/kernel.pyc ${PYSITELIB}/IPython/lib/kernel.pyo +${PYSITELIB}/IPython/lib/latextools.py ${PYSITELIB}/IPython/lib/latextools.pyc ${PYSITELIB}/IPython/lib/latextools.pyo +${PYSITELIB}/IPython/lib/lexers.py +${PYSITELIB}/IPython/lib/lexers.pyc +${PYSITELIB}/IPython/lib/lexers.pyo +${PYSITELIB}/IPython/lib/pretty.py ${PYSITELIB}/IPython/lib/pretty.pyc ${PYSITELIB}/IPython/lib/pretty.pyo +${PYSITELIB}/IPython/lib/security.py ${PYSITELIB}/IPython/lib/security.pyc ${PYSITELIB}/IPython/lib/security.pyo -${PYSITELIB}/IPython/lib/backgroundjobs.py -${PYSITELIB}/IPython/lib/clipboard.py -${PYSITELIB}/IPython/lib/deepreload.py -${PYSITELIB}/IPython/lib/demo.py -${PYSITELIB}/IPython/lib/display.py -${PYSITELIB}/IPython/lib/editorhooks.py -${PYSITELIB}/IPython/lib/guisupport.py -${PYSITELIB}/IPython/lib/inputhook.py -${PYSITELIB}/IPython/lib/inputhookglut.py -${PYSITELIB}/IPython/lib/inputhookgtk.py -${PYSITELIB}/IPython/lib/inputhookgtk3.py -${PYSITELIB}/IPython/lib/inputhookpyglet.py -${PYSITELIB}/IPython/lib/inputhookqt4.py -${PYSITELIB}/IPython/lib/inputhookwx.py -${PYSITELIB}/IPython/lib/kernel.py -${PYSITELIB}/IPython/lib/latextools.py -${PYSITELIB}/IPython/lib/pretty.py -${PYSITELIB}/IPython/lib/security.py ${PYSITELIB}/IPython/lib/tests/__init__.py ${PYSITELIB}/IPython/lib/tests/__init__.pyc ${PYSITELIB}/IPython/lib/tests/__init__.pyo +${PYSITELIB}/IPython/lib/tests/test.wav +${PYSITELIB}/IPython/lib/tests/test_backgroundjobs.py ${PYSITELIB}/IPython/lib/tests/test_backgroundjobs.pyc ${PYSITELIB}/IPython/lib/tests/test_backgroundjobs.pyo +${PYSITELIB}/IPython/lib/tests/test_clipboard.py ${PYSITELIB}/IPython/lib/tests/test_clipboard.pyc ${PYSITELIB}/IPython/lib/tests/test_clipboard.pyo +${PYSITELIB}/IPython/lib/tests/test_deepreload.py ${PYSITELIB}/IPython/lib/tests/test_deepreload.pyc ${PYSITELIB}/IPython/lib/tests/test_deepreload.pyo +${PYSITELIB}/IPython/lib/tests/test_display.py ${PYSITELIB}/IPython/lib/tests/test_display.pyc ${PYSITELIB}/IPython/lib/tests/test_display.pyo +${PYSITELIB}/IPython/lib/tests/test_editorhooks.py +${PYSITELIB}/IPython/lib/tests/test_editorhooks.pyc +${PYSITELIB}/IPython/lib/tests/test_editorhooks.pyo +${PYSITELIB}/IPython/lib/tests/test_imports.py ${PYSITELIB}/IPython/lib/tests/test_imports.pyc ${PYSITELIB}/IPython/lib/tests/test_imports.pyo +${PYSITELIB}/IPython/lib/tests/test_latextools.py ${PYSITELIB}/IPython/lib/tests/test_latextools.pyc ${PYSITELIB}/IPython/lib/tests/test_latextools.pyo +${PYSITELIB}/IPython/lib/tests/test_pretty.py ${PYSITELIB}/IPython/lib/tests/test_pretty.pyc ${PYSITELIB}/IPython/lib/tests/test_pretty.pyo +${PYSITELIB}/IPython/lib/tests/test_security.py ${PYSITELIB}/IPython/lib/tests/test_security.pyc ${PYSITELIB}/IPython/lib/tests/test_security.pyo -${PYSITELIB}/IPython/lib/tests/test.wav -${PYSITELIB}/IPython/lib/tests/test_backgroundjobs.py -${PYSITELIB}/IPython/lib/tests/test_clipboard.py -${PYSITELIB}/IPython/lib/tests/test_deepreload.py -${PYSITELIB}/IPython/lib/tests/test_display.py -${PYSITELIB}/IPython/lib/tests/test_imports.py -${PYSITELIB}/IPython/lib/tests/test_latextools.py -${PYSITELIB}/IPython/lib/tests/test_pretty.py -${PYSITELIB}/IPython/lib/tests/test_security.py ${PYSITELIB}/IPython/nbconvert/__init__.py ${PYSITELIB}/IPython/nbconvert/__init__.pyc ${PYSITELIB}/IPython/nbconvert/__init__.pyo -${PYSITELIB}/IPython/nbconvert/nbconvertapp.pyc -${PYSITELIB}/IPython/nbconvert/nbconvertapp.pyo ${PYSITELIB}/IPython/nbconvert/exporters/__init__.py ${PYSITELIB}/IPython/nbconvert/exporters/__init__.pyc ${PYSITELIB}/IPython/nbconvert/exporters/__init__.pyo +${PYSITELIB}/IPython/nbconvert/exporters/export.py ${PYSITELIB}/IPython/nbconvert/exporters/export.pyc ${PYSITELIB}/IPython/nbconvert/exporters/export.pyo +${PYSITELIB}/IPython/nbconvert/exporters/exporter.py ${PYSITELIB}/IPython/nbconvert/exporters/exporter.pyc ${PYSITELIB}/IPython/nbconvert/exporters/exporter.pyo +${PYSITELIB}/IPython/nbconvert/exporters/html.py ${PYSITELIB}/IPython/nbconvert/exporters/html.pyc ${PYSITELIB}/IPython/nbconvert/exporters/html.pyo +${PYSITELIB}/IPython/nbconvert/exporters/latex.py ${PYSITELIB}/IPython/nbconvert/exporters/latex.pyc ${PYSITELIB}/IPython/nbconvert/exporters/latex.pyo +${PYSITELIB}/IPython/nbconvert/exporters/markdown.py ${PYSITELIB}/IPython/nbconvert/exporters/markdown.pyc ${PYSITELIB}/IPython/nbconvert/exporters/markdown.pyo +${PYSITELIB}/IPython/nbconvert/exporters/notebook.py +${PYSITELIB}/IPython/nbconvert/exporters/notebook.pyc +${PYSITELIB}/IPython/nbconvert/exporters/notebook.pyo +${PYSITELIB}/IPython/nbconvert/exporters/pdf.py +${PYSITELIB}/IPython/nbconvert/exporters/pdf.pyc +${PYSITELIB}/IPython/nbconvert/exporters/pdf.pyo +${PYSITELIB}/IPython/nbconvert/exporters/python.py ${PYSITELIB}/IPython/nbconvert/exporters/python.pyc ${PYSITELIB}/IPython/nbconvert/exporters/python.pyo +${PYSITELIB}/IPython/nbconvert/exporters/rst.py ${PYSITELIB}/IPython/nbconvert/exporters/rst.pyc ${PYSITELIB}/IPython/nbconvert/exporters/rst.pyo +${PYSITELIB}/IPython/nbconvert/exporters/script.py +${PYSITELIB}/IPython/nbconvert/exporters/script.pyc +${PYSITELIB}/IPython/nbconvert/exporters/script.pyo +${PYSITELIB}/IPython/nbconvert/exporters/slides.py ${PYSITELIB}/IPython/nbconvert/exporters/slides.pyc ${PYSITELIB}/IPython/nbconvert/exporters/slides.pyo +${PYSITELIB}/IPython/nbconvert/exporters/templateexporter.py ${PYSITELIB}/IPython/nbconvert/exporters/templateexporter.pyc ${PYSITELIB}/IPython/nbconvert/exporters/templateexporter.pyo -${PYSITELIB}/IPython/nbconvert/exporters/export.py -${PYSITELIB}/IPython/nbconvert/exporters/exporter.py -${PYSITELIB}/IPython/nbconvert/exporters/html.py -${PYSITELIB}/IPython/nbconvert/exporters/latex.py -${PYSITELIB}/IPython/nbconvert/exporters/markdown.py -${PYSITELIB}/IPython/nbconvert/exporters/python.py -${PYSITELIB}/IPython/nbconvert/exporters/rst.py -${PYSITELIB}/IPython/nbconvert/exporters/slides.py -${PYSITELIB}/IPython/nbconvert/exporters/templateexporter.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/__init__.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/__init__.pyc ${PYSITELIB}/IPython/nbconvert/exporters/tests/__init__.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/base.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/base.pyc ${PYSITELIB}/IPython/nbconvert/exporters/tests/base.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/cheese.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/cheese.pyc ${PYSITELIB}/IPython/nbconvert/exporters/tests/cheese.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/files/notebook2.ipynb +${PYSITELIB}/IPython/nbconvert/exporters/tests/files/pngmetadata.ipynb +${PYSITELIB}/IPython/nbconvert/exporters/tests/files/prompt_numbers.ipynb +${PYSITELIB}/IPython/nbconvert/exporters/tests/files/rawtest.ipynb +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_export.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_export.pyc ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_export.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_exporter.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_exporter.pyc ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_exporter.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_html.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_html.pyc ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_html.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_latex.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_latex.pyc ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_latex.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_markdown.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_markdown.pyc ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_markdown.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_notebook.py +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_notebook.pyc +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_notebook.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_pdf.py +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_pdf.pyc +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_pdf.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_python.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_python.pyc ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_python.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_rst.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_rst.pyc ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_rst.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_script.py +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_script.pyc +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_script.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_slides.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_slides.pyc ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_slides.pyo +${PYSITELIB}/IPython/nbconvert/exporters/tests/test_templateexporter.py ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_templateexporter.pyc ${PYSITELIB}/IPython/nbconvert/exporters/tests/test_templateexporter.pyo -${PYSITELIB}/IPython/nbconvert/exporters/tests/base.py -${PYSITELIB}/IPython/nbconvert/exporters/tests/cheese.py -${PYSITELIB}/IPython/nbconvert/exporters/tests/files/notebook2.ipynb -${PYSITELIB}/IPython/nbconvert/exporters/tests/files/rawtest.ipynb -${PYSITELIB}/IPython/nbconvert/exporters/tests/test_export.py -${PYSITELIB}/IPython/nbconvert/exporters/tests/test_exporter.py -${PYSITELIB}/IPython/nbconvert/exporters/tests/test_html.py -${PYSITELIB}/IPython/nbconvert/exporters/tests/test_latex.py -${PYSITELIB}/IPython/nbconvert/exporters/tests/test_markdown.py -${PYSITELIB}/IPython/nbconvert/exporters/tests/test_python.py -${PYSITELIB}/IPython/nbconvert/exporters/tests/test_rst.py -${PYSITELIB}/IPython/nbconvert/exporters/tests/test_slides.py -${PYSITELIB}/IPython/nbconvert/exporters/tests/test_templateexporter.py ${PYSITELIB}/IPython/nbconvert/filters/__init__.py ${PYSITELIB}/IPython/nbconvert/filters/__init__.pyc ${PYSITELIB}/IPython/nbconvert/filters/__init__.pyo +${PYSITELIB}/IPython/nbconvert/filters/ansi.py ${PYSITELIB}/IPython/nbconvert/filters/ansi.pyc ${PYSITELIB}/IPython/nbconvert/filters/ansi.pyo +${PYSITELIB}/IPython/nbconvert/filters/citation.py ${PYSITELIB}/IPython/nbconvert/filters/citation.pyc ${PYSITELIB}/IPython/nbconvert/filters/citation.pyo +${PYSITELIB}/IPython/nbconvert/filters/datatypefilter.py ${PYSITELIB}/IPython/nbconvert/filters/datatypefilter.pyc ${PYSITELIB}/IPython/nbconvert/filters/datatypefilter.pyo +${PYSITELIB}/IPython/nbconvert/filters/highlight.py ${PYSITELIB}/IPython/nbconvert/filters/highlight.pyc ${PYSITELIB}/IPython/nbconvert/filters/highlight.pyo +${PYSITELIB}/IPython/nbconvert/filters/latex.py ${PYSITELIB}/IPython/nbconvert/filters/latex.pyc ${PYSITELIB}/IPython/nbconvert/filters/latex.pyo +${PYSITELIB}/IPython/nbconvert/filters/markdown.py ${PYSITELIB}/IPython/nbconvert/filters/markdown.pyc ${PYSITELIB}/IPython/nbconvert/filters/markdown.pyo -${PYSITELIB}/IPython/nbconvert/filters/strings.pyc -${PYSITELIB}/IPython/nbconvert/filters/strings.pyo -${PYSITELIB}/IPython/nbconvert/filters/ansi.py -${PYSITELIB}/IPython/nbconvert/filters/citation.py -${PYSITELIB}/IPython/nbconvert/filters/datatypefilter.py -${PYSITELIB}/IPython/nbconvert/filters/highlight.py -${PYSITELIB}/IPython/nbconvert/filters/latex.py -${PYSITELIB}/IPython/nbconvert/filters/markdown.py +${PYSITELIB}/IPython/nbconvert/filters/markdown_mistune.py +${PYSITELIB}/IPython/nbconvert/filters/markdown_mistune.pyc +${PYSITELIB}/IPython/nbconvert/filters/markdown_mistune.pyo ${PYSITELIB}/IPython/nbconvert/filters/marked.js ${PYSITELIB}/IPython/nbconvert/filters/strings.py +${PYSITELIB}/IPython/nbconvert/filters/strings.pyc +${PYSITELIB}/IPython/nbconvert/filters/strings.pyo ${PYSITELIB}/IPython/nbconvert/filters/tests/__init__.py ${PYSITELIB}/IPython/nbconvert/filters/tests/__init__.pyc ${PYSITELIB}/IPython/nbconvert/filters/tests/__init__.pyo +${PYSITELIB}/IPython/nbconvert/filters/tests/test_ansi.py ${PYSITELIB}/IPython/nbconvert/filters/tests/test_ansi.pyc ${PYSITELIB}/IPython/nbconvert/filters/tests/test_ansi.pyo +${PYSITELIB}/IPython/nbconvert/filters/tests/test_citation.py ${PYSITELIB}/IPython/nbconvert/filters/tests/test_citation.pyc ${PYSITELIB}/IPython/nbconvert/filters/tests/test_citation.pyo +${PYSITELIB}/IPython/nbconvert/filters/tests/test_datatypefilter.py ${PYSITELIB}/IPython/nbconvert/filters/tests/test_datatypefilter.pyc ${PYSITELIB}/IPython/nbconvert/filters/tests/test_datatypefilter.pyo +${PYSITELIB}/IPython/nbconvert/filters/tests/test_highlight.py ${PYSITELIB}/IPython/nbconvert/filters/tests/test_highlight.pyc ${PYSITELIB}/IPython/nbconvert/filters/tests/test_highlight.pyo +${PYSITELIB}/IPython/nbconvert/filters/tests/test_latex.py ${PYSITELIB}/IPython/nbconvert/filters/tests/test_latex.pyc ${PYSITELIB}/IPython/nbconvert/filters/tests/test_latex.pyo +${PYSITELIB}/IPython/nbconvert/filters/tests/test_markdown.py ${PYSITELIB}/IPython/nbconvert/filters/tests/test_markdown.pyc ${PYSITELIB}/IPython/nbconvert/filters/tests/test_markdown.pyo +${PYSITELIB}/IPython/nbconvert/filters/tests/test_strings.py ${PYSITELIB}/IPython/nbconvert/filters/tests/test_strings.pyc ${PYSITELIB}/IPython/nbconvert/filters/tests/test_strings.pyo -${PYSITELIB}/IPython/nbconvert/filters/tests/test_ansi.py -${PYSITELIB}/IPython/nbconvert/filters/tests/test_citation.py -${PYSITELIB}/IPython/nbconvert/filters/tests/test_datatypefilter.py -${PYSITELIB}/IPython/nbconvert/filters/tests/test_highlight.py -${PYSITELIB}/IPython/nbconvert/filters/tests/test_latex.py -${PYSITELIB}/IPython/nbconvert/filters/tests/test_markdown.py -${PYSITELIB}/IPython/nbconvert/filters/tests/test_strings.py ${PYSITELIB}/IPython/nbconvert/nbconvertapp.py +${PYSITELIB}/IPython/nbconvert/nbconvertapp.pyc +${PYSITELIB}/IPython/nbconvert/nbconvertapp.pyo ${PYSITELIB}/IPython/nbconvert/postprocessors/__init__.py ${PYSITELIB}/IPython/nbconvert/postprocessors/__init__.pyc ${PYSITELIB}/IPython/nbconvert/postprocessors/__init__.pyo +${PYSITELIB}/IPython/nbconvert/postprocessors/base.py ${PYSITELIB}/IPython/nbconvert/postprocessors/base.pyc ${PYSITELIB}/IPython/nbconvert/postprocessors/base.pyo -${PYSITELIB}/IPython/nbconvert/postprocessors/pdf.pyc -${PYSITELIB}/IPython/nbconvert/postprocessors/pdf.pyo +${PYSITELIB}/IPython/nbconvert/postprocessors/serve.py ${PYSITELIB}/IPython/nbconvert/postprocessors/serve.pyc ${PYSITELIB}/IPython/nbconvert/postprocessors/serve.pyo -${PYSITELIB}/IPython/nbconvert/postprocessors/base.py -${PYSITELIB}/IPython/nbconvert/postprocessors/pdf.py -${PYSITELIB}/IPython/nbconvert/postprocessors/serve.py ${PYSITELIB}/IPython/nbconvert/postprocessors/tests/__init__.py ${PYSITELIB}/IPython/nbconvert/postprocessors/tests/__init__.pyc ${PYSITELIB}/IPython/nbconvert/postprocessors/tests/__init__.pyo -${PYSITELIB}/IPython/nbconvert/postprocessors/tests/test_pdf.pyc -${PYSITELIB}/IPython/nbconvert/postprocessors/tests/test_pdf.pyo +${PYSITELIB}/IPython/nbconvert/postprocessors/tests/test_serve.py ${PYSITELIB}/IPython/nbconvert/postprocessors/tests/test_serve.pyc ${PYSITELIB}/IPython/nbconvert/postprocessors/tests/test_serve.pyo -${PYSITELIB}/IPython/nbconvert/postprocessors/tests/test_pdf.py -${PYSITELIB}/IPython/nbconvert/postprocessors/tests/test_serve.py ${PYSITELIB}/IPython/nbconvert/preprocessors/__init__.py ${PYSITELIB}/IPython/nbconvert/preprocessors/__init__.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/__init__.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/base.py ${PYSITELIB}/IPython/nbconvert/preprocessors/base.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/base.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/clearoutput.py +${PYSITELIB}/IPython/nbconvert/preprocessors/clearoutput.pyc +${PYSITELIB}/IPython/nbconvert/preprocessors/clearoutput.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/coalescestreams.py ${PYSITELIB}/IPython/nbconvert/preprocessors/coalescestreams.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/coalescestreams.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/convertfigures.py ${PYSITELIB}/IPython/nbconvert/preprocessors/convertfigures.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/convertfigures.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/csshtmlheader.py ${PYSITELIB}/IPython/nbconvert/preprocessors/csshtmlheader.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/csshtmlheader.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/execute.py +${PYSITELIB}/IPython/nbconvert/preprocessors/execute.pyc +${PYSITELIB}/IPython/nbconvert/preprocessors/execute.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/extractoutput.py ${PYSITELIB}/IPython/nbconvert/preprocessors/extractoutput.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/extractoutput.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/highlightmagics.py ${PYSITELIB}/IPython/nbconvert/preprocessors/highlightmagics.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/highlightmagics.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/latex.py ${PYSITELIB}/IPython/nbconvert/preprocessors/latex.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/latex.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/revealhelp.py ${PYSITELIB}/IPython/nbconvert/preprocessors/revealhelp.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/revealhelp.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/svg2pdf.py ${PYSITELIB}/IPython/nbconvert/preprocessors/svg2pdf.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/svg2pdf.pyo -${PYSITELIB}/IPython/nbconvert/preprocessors/base.py -${PYSITELIB}/IPython/nbconvert/preprocessors/coalescestreams.py -${PYSITELIB}/IPython/nbconvert/preprocessors/convertfigures.py -${PYSITELIB}/IPython/nbconvert/preprocessors/csshtmlheader.py -${PYSITELIB}/IPython/nbconvert/preprocessors/extractoutput.py -${PYSITELIB}/IPython/nbconvert/preprocessors/highlightmagics.py -${PYSITELIB}/IPython/nbconvert/preprocessors/latex.py -${PYSITELIB}/IPython/nbconvert/preprocessors/revealhelp.py -${PYSITELIB}/IPython/nbconvert/preprocessors/svg2pdf.py ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/__init__.py ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/__init__.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/__init__.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/base.py ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/base.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/base.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/files/Clear Output.ipynb +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/files/Disable Stdin.ipynb +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/files/Factorials.ipynb +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/files/HelloWorld.ipynb +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/files/Inline Image.ipynb +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/files/Interrupt.ipynb +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/files/SVG.ipynb +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/files/Skip Exceptions.ipynb +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/files/Unicode.ipynb +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/files/python.png +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_clearoutput.py +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_clearoutput.pyc +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_clearoutput.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_coalescestreams.py ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_coalescestreams.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_coalescestreams.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_csshtmlheader.py ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_csshtmlheader.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_csshtmlheader.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_execute.py +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_execute.pyc +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_execute.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_extractoutput.py ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_extractoutput.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_extractoutput.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_highlightmagics.py ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_highlightmagics.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_highlightmagics.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_latex.py ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_latex.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_latex.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_revealhelp.py ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_revealhelp.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_revealhelp.pyo +${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_svg2pdf.py ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_svg2pdf.pyc ${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_svg2pdf.pyo -${PYSITELIB}/IPython/nbconvert/preprocessors/tests/base.py -${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_coalescestreams.py -${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_csshtmlheader.py -${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_extractoutput.py -${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_highlightmagics.py -${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_latex.py -${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_revealhelp.py -${PYSITELIB}/IPython/nbconvert/preprocessors/tests/test_svg2pdf.py ${PYSITELIB}/IPython/nbconvert/templates/README.md ${PYSITELIB}/IPython/nbconvert/templates/html/basic.tpl ${PYSITELIB}/IPython/nbconvert/templates/html/full.tpl @@ -1528,803 +1727,878 @@ ${PYSITELIB}/IPython/nbconvert/templates/latex/style_python.tplx ${PYSITELIB}/IPython/nbconvert/templates/markdown.tpl ${PYSITELIB}/IPython/nbconvert/templates/python.tpl ${PYSITELIB}/IPython/nbconvert/templates/rst.tpl +${PYSITELIB}/IPython/nbconvert/templates/script.tpl ${PYSITELIB}/IPython/nbconvert/templates/skeleton/README.md ${PYSITELIB}/IPython/nbconvert/templates/skeleton/display_priority.tpl ${PYSITELIB}/IPython/nbconvert/templates/skeleton/null.tpl ${PYSITELIB}/IPython/nbconvert/tests/__init__.py ${PYSITELIB}/IPython/nbconvert/tests/__init__.pyc ${PYSITELIB}/IPython/nbconvert/tests/__init__.pyo -${PYSITELIB}/IPython/nbconvert/tests/base.pyc -${PYSITELIB}/IPython/nbconvert/tests/base.pyo -${PYSITELIB}/IPython/nbconvert/tests/test_nbconvertapp.pyc -${PYSITELIB}/IPython/nbconvert/tests/test_nbconvertapp.pyo ${PYSITELIB}/IPython/nbconvert/tests/base.py +${PYSITELIB}/IPython/nbconvert/tests/base.pyc +${PYSITELIB}/IPython/nbconvert/tests/base.pyo +${PYSITELIB}/IPython/nbconvert/tests/files/hello.py +${PYSITELIB}/IPython/nbconvert/tests/files/hello.pyc +${PYSITELIB}/IPython/nbconvert/tests/files/hello.pyo +${PYSITELIB}/IPython/nbconvert/tests/files/ipython_nbconvert_config.py ${PYSITELIB}/IPython/nbconvert/tests/files/ipython_nbconvert_config.pyc ${PYSITELIB}/IPython/nbconvert/tests/files/ipython_nbconvert_config.pyo -${PYSITELIB}/IPython/nbconvert/tests/files/override.pyc -${PYSITELIB}/IPython/nbconvert/tests/files/override.pyo -${PYSITELIB}/IPython/nbconvert/tests/files/ipython_nbconvert_config.py ${PYSITELIB}/IPython/nbconvert/tests/files/notebook1.ipynb ${PYSITELIB}/IPython/nbconvert/tests/files/notebook2.ipynb ${PYSITELIB}/IPython/nbconvert/tests/files/override.py +${PYSITELIB}/IPython/nbconvert/tests/files/override.pyc +${PYSITELIB}/IPython/nbconvert/tests/files/override.pyo ${PYSITELIB}/IPython/nbconvert/tests/test_nbconvertapp.py +${PYSITELIB}/IPython/nbconvert/tests/test_nbconvertapp.pyc +${PYSITELIB}/IPython/nbconvert/tests/test_nbconvertapp.pyo ${PYSITELIB}/IPython/nbconvert/utils/__init__.py ${PYSITELIB}/IPython/nbconvert/utils/__init__.pyc ${PYSITELIB}/IPython/nbconvert/utils/__init__.pyo +${PYSITELIB}/IPython/nbconvert/utils/base.py ${PYSITELIB}/IPython/nbconvert/utils/base.pyc ${PYSITELIB}/IPython/nbconvert/utils/base.pyo +${PYSITELIB}/IPython/nbconvert/utils/exceptions.py ${PYSITELIB}/IPython/nbconvert/utils/exceptions.pyc ${PYSITELIB}/IPython/nbconvert/utils/exceptions.pyo +${PYSITELIB}/IPython/nbconvert/utils/lexers.py ${PYSITELIB}/IPython/nbconvert/utils/lexers.pyc ${PYSITELIB}/IPython/nbconvert/utils/lexers.pyo +${PYSITELIB}/IPython/nbconvert/utils/pandoc.py ${PYSITELIB}/IPython/nbconvert/utils/pandoc.pyc ${PYSITELIB}/IPython/nbconvert/utils/pandoc.pyo -${PYSITELIB}/IPython/nbconvert/utils/base.py -${PYSITELIB}/IPython/nbconvert/utils/exceptions.py -${PYSITELIB}/IPython/nbconvert/utils/lexers.py -${PYSITELIB}/IPython/nbconvert/utils/pandoc.py ${PYSITELIB}/IPython/nbconvert/utils/tests/__init__.py ${PYSITELIB}/IPython/nbconvert/utils/tests/__init__.pyc ${PYSITELIB}/IPython/nbconvert/utils/tests/__init__.pyo +${PYSITELIB}/IPython/nbconvert/utils/tests/test_lexers.py +${PYSITELIB}/IPython/nbconvert/utils/tests/test_lexers.pyc +${PYSITELIB}/IPython/nbconvert/utils/tests/test_lexers.pyo +${PYSITELIB}/IPython/nbconvert/utils/tests/test_pandoc.py ${PYSITELIB}/IPython/nbconvert/utils/tests/test_pandoc.pyc ${PYSITELIB}/IPython/nbconvert/utils/tests/test_pandoc.pyo -${PYSITELIB}/IPython/nbconvert/utils/tests/test_pandoc.py ${PYSITELIB}/IPython/nbconvert/writers/__init__.py ${PYSITELIB}/IPython/nbconvert/writers/__init__.pyc ${PYSITELIB}/IPython/nbconvert/writers/__init__.pyo +${PYSITELIB}/IPython/nbconvert/writers/base.py ${PYSITELIB}/IPython/nbconvert/writers/base.pyc ${PYSITELIB}/IPython/nbconvert/writers/base.pyo +${PYSITELIB}/IPython/nbconvert/writers/debug.py ${PYSITELIB}/IPython/nbconvert/writers/debug.pyc ${PYSITELIB}/IPython/nbconvert/writers/debug.pyo +${PYSITELIB}/IPython/nbconvert/writers/files.py ${PYSITELIB}/IPython/nbconvert/writers/files.pyc ${PYSITELIB}/IPython/nbconvert/writers/files.pyo +${PYSITELIB}/IPython/nbconvert/writers/stdout.py ${PYSITELIB}/IPython/nbconvert/writers/stdout.pyc ${PYSITELIB}/IPython/nbconvert/writers/stdout.pyo -${PYSITELIB}/IPython/nbconvert/writers/base.py -${PYSITELIB}/IPython/nbconvert/writers/debug.py -${PYSITELIB}/IPython/nbconvert/writers/files.py -${PYSITELIB}/IPython/nbconvert/writers/stdout.py ${PYSITELIB}/IPython/nbconvert/writers/tests/__init__.py ${PYSITELIB}/IPython/nbconvert/writers/tests/__init__.pyc ${PYSITELIB}/IPython/nbconvert/writers/tests/__init__.pyo +${PYSITELIB}/IPython/nbconvert/writers/tests/test_debug.py ${PYSITELIB}/IPython/nbconvert/writers/tests/test_debug.pyc ${PYSITELIB}/IPython/nbconvert/writers/tests/test_debug.pyo +${PYSITELIB}/IPython/nbconvert/writers/tests/test_files.py ${PYSITELIB}/IPython/nbconvert/writers/tests/test_files.pyc ${PYSITELIB}/IPython/nbconvert/writers/tests/test_files.pyo +${PYSITELIB}/IPython/nbconvert/writers/tests/test_stdout.py ${PYSITELIB}/IPython/nbconvert/writers/tests/test_stdout.pyc ${PYSITELIB}/IPython/nbconvert/writers/tests/test_stdout.pyo -${PYSITELIB}/IPython/nbconvert/writers/tests/test_debug.py -${PYSITELIB}/IPython/nbconvert/writers/tests/test_files.py -${PYSITELIB}/IPython/nbconvert/writers/tests/test_stdout.py ${PYSITELIB}/IPython/nbformat/__init__.py ${PYSITELIB}/IPython/nbformat/__init__.pyc ${PYSITELIB}/IPython/nbformat/__init__.pyo -${PYSITELIB}/IPython/nbformat/convert.pyc -${PYSITELIB}/IPython/nbformat/convert.pyo +${PYSITELIB}/IPython/nbformat/converter.py +${PYSITELIB}/IPython/nbformat/converter.pyc +${PYSITELIB}/IPython/nbformat/converter.pyo +${PYSITELIB}/IPython/nbformat/current.py ${PYSITELIB}/IPython/nbformat/current.pyc ${PYSITELIB}/IPython/nbformat/current.pyo +${PYSITELIB}/IPython/nbformat/notebooknode.py +${PYSITELIB}/IPython/nbformat/notebooknode.pyc +${PYSITELIB}/IPython/nbformat/notebooknode.pyo +${PYSITELIB}/IPython/nbformat/reader.py ${PYSITELIB}/IPython/nbformat/reader.pyc ${PYSITELIB}/IPython/nbformat/reader.pyo +${PYSITELIB}/IPython/nbformat/sign.py ${PYSITELIB}/IPython/nbformat/sign.pyc ${PYSITELIB}/IPython/nbformat/sign.pyo -${PYSITELIB}/IPython/nbformat/convert.py -${PYSITELIB}/IPython/nbformat/current.py -${PYSITELIB}/IPython/nbformat/reader.py -${PYSITELIB}/IPython/nbformat/sign.py ${PYSITELIB}/IPython/nbformat/tests/__init__.py ${PYSITELIB}/IPython/nbformat/tests/__init__.pyc ${PYSITELIB}/IPython/nbformat/tests/__init__.pyo +${PYSITELIB}/IPython/nbformat/tests/base.py ${PYSITELIB}/IPython/nbformat/tests/base.pyc ${PYSITELIB}/IPython/nbformat/tests/base.pyo +${PYSITELIB}/IPython/nbformat/tests/invalid.ipynb +${PYSITELIB}/IPython/nbformat/tests/test2.ipynb +${PYSITELIB}/IPython/nbformat/tests/test3.ipynb +${PYSITELIB}/IPython/nbformat/tests/test4.ipynb +${PYSITELIB}/IPython/nbformat/tests/test4plus.ipynb +${PYSITELIB}/IPython/nbformat/tests/test_api.py +${PYSITELIB}/IPython/nbformat/tests/test_api.pyc +${PYSITELIB}/IPython/nbformat/tests/test_api.pyo +${PYSITELIB}/IPython/nbformat/tests/test_convert.py ${PYSITELIB}/IPython/nbformat/tests/test_convert.pyc ${PYSITELIB}/IPython/nbformat/tests/test_convert.pyo -${PYSITELIB}/IPython/nbformat/tests/test_current.pyc -${PYSITELIB}/IPython/nbformat/tests/test_current.pyo +${PYSITELIB}/IPython/nbformat/tests/test_reader.py ${PYSITELIB}/IPython/nbformat/tests/test_reader.pyc ${PYSITELIB}/IPython/nbformat/tests/test_reader.pyo +${PYSITELIB}/IPython/nbformat/tests/test_sign.py ${PYSITELIB}/IPython/nbformat/tests/test_sign.pyc ${PYSITELIB}/IPython/nbformat/tests/test_sign.pyo -${PYSITELIB}/IPython/nbformat/tests/base.py -${PYSITELIB}/IPython/nbformat/tests/test2.ipynb -${PYSITELIB}/IPython/nbformat/tests/test3.ipynb -${PYSITELIB}/IPython/nbformat/tests/test_convert.py -${PYSITELIB}/IPython/nbformat/tests/test_current.py -${PYSITELIB}/IPython/nbformat/tests/test_reader.py -${PYSITELIB}/IPython/nbformat/tests/test_sign.py +${PYSITELIB}/IPython/nbformat/tests/test_validator.py +${PYSITELIB}/IPython/nbformat/tests/test_validator.pyc +${PYSITELIB}/IPython/nbformat/tests/test_validator.pyo ${PYSITELIB}/IPython/nbformat/v1/__init__.py ${PYSITELIB}/IPython/nbformat/v1/__init__.pyc ${PYSITELIB}/IPython/nbformat/v1/__init__.pyo +${PYSITELIB}/IPython/nbformat/v1/convert.py ${PYSITELIB}/IPython/nbformat/v1/convert.pyc ${PYSITELIB}/IPython/nbformat/v1/convert.pyo +${PYSITELIB}/IPython/nbformat/v1/nbbase.py ${PYSITELIB}/IPython/nbformat/v1/nbbase.pyc ${PYSITELIB}/IPython/nbformat/v1/nbbase.pyo +${PYSITELIB}/IPython/nbformat/v1/nbjson.py ${PYSITELIB}/IPython/nbformat/v1/nbjson.pyc ${PYSITELIB}/IPython/nbformat/v1/nbjson.pyo +${PYSITELIB}/IPython/nbformat/v1/rwbase.py ${PYSITELIB}/IPython/nbformat/v1/rwbase.pyc ${PYSITELIB}/IPython/nbformat/v1/rwbase.pyo -${PYSITELIB}/IPython/nbformat/v1/convert.py -${PYSITELIB}/IPython/nbformat/v1/nbbase.py -${PYSITELIB}/IPython/nbformat/v1/nbjson.py -${PYSITELIB}/IPython/nbformat/v1/rwbase.py ${PYSITELIB}/IPython/nbformat/v1/tests/__init__.py ${PYSITELIB}/IPython/nbformat/v1/tests/__init__.pyc ${PYSITELIB}/IPython/nbformat/v1/tests/__init__.pyo +${PYSITELIB}/IPython/nbformat/v1/tests/nbexamples.py ${PYSITELIB}/IPython/nbformat/v1/tests/nbexamples.pyc ${PYSITELIB}/IPython/nbformat/v1/tests/nbexamples.pyo +${PYSITELIB}/IPython/nbformat/v1/tests/test_json.py ${PYSITELIB}/IPython/nbformat/v1/tests/test_json.pyc ${PYSITELIB}/IPython/nbformat/v1/tests/test_json.pyo +${PYSITELIB}/IPython/nbformat/v1/tests/test_nbbase.py ${PYSITELIB}/IPython/nbformat/v1/tests/test_nbbase.pyc ${PYSITELIB}/IPython/nbformat/v1/tests/test_nbbase.pyo -${PYSITELIB}/IPython/nbformat/v1/tests/nbexamples.py -${PYSITELIB}/IPython/nbformat/v1/tests/test_json.py -${PYSITELIB}/IPython/nbformat/v1/tests/test_nbbase.py ${PYSITELIB}/IPython/nbformat/v2/__init__.py ${PYSITELIB}/IPython/nbformat/v2/__init__.pyc ${PYSITELIB}/IPython/nbformat/v2/__init__.pyo +${PYSITELIB}/IPython/nbformat/v2/convert.py ${PYSITELIB}/IPython/nbformat/v2/convert.pyc ${PYSITELIB}/IPython/nbformat/v2/convert.pyo +${PYSITELIB}/IPython/nbformat/v2/nbbase.py ${PYSITELIB}/IPython/nbformat/v2/nbbase.pyc ${PYSITELIB}/IPython/nbformat/v2/nbbase.pyo +${PYSITELIB}/IPython/nbformat/v2/nbjson.py ${PYSITELIB}/IPython/nbformat/v2/nbjson.pyc ${PYSITELIB}/IPython/nbformat/v2/nbjson.pyo +${PYSITELIB}/IPython/nbformat/v2/nbpy.py ${PYSITELIB}/IPython/nbformat/v2/nbpy.pyc ${PYSITELIB}/IPython/nbformat/v2/nbpy.pyo +${PYSITELIB}/IPython/nbformat/v2/nbxml.py ${PYSITELIB}/IPython/nbformat/v2/nbxml.pyc ${PYSITELIB}/IPython/nbformat/v2/nbxml.pyo +${PYSITELIB}/IPython/nbformat/v2/rwbase.py ${PYSITELIB}/IPython/nbformat/v2/rwbase.pyc ${PYSITELIB}/IPython/nbformat/v2/rwbase.pyo -${PYSITELIB}/IPython/nbformat/v2/convert.py -${PYSITELIB}/IPython/nbformat/v2/nbbase.py -${PYSITELIB}/IPython/nbformat/v2/nbjson.py -${PYSITELIB}/IPython/nbformat/v2/nbpy.py -${PYSITELIB}/IPython/nbformat/v2/nbxml.py -${PYSITELIB}/IPython/nbformat/v2/rwbase.py ${PYSITELIB}/IPython/nbformat/v2/tests/__init__.py ${PYSITELIB}/IPython/nbformat/v2/tests/__init__.pyc ${PYSITELIB}/IPython/nbformat/v2/tests/__init__.pyo +${PYSITELIB}/IPython/nbformat/v2/tests/nbexamples.py ${PYSITELIB}/IPython/nbformat/v2/tests/nbexamples.pyc ${PYSITELIB}/IPython/nbformat/v2/tests/nbexamples.pyo +${PYSITELIB}/IPython/nbformat/v2/tests/test_json.py ${PYSITELIB}/IPython/nbformat/v2/tests/test_json.pyc ${PYSITELIB}/IPython/nbformat/v2/tests/test_json.pyo +${PYSITELIB}/IPython/nbformat/v2/tests/test_nbbase.py ${PYSITELIB}/IPython/nbformat/v2/tests/test_nbbase.pyc ${PYSITELIB}/IPython/nbformat/v2/tests/test_nbbase.pyo +${PYSITELIB}/IPython/nbformat/v2/tests/test_nbpy.py ${PYSITELIB}/IPython/nbformat/v2/tests/test_nbpy.pyc ${PYSITELIB}/IPython/nbformat/v2/tests/test_nbpy.pyo -${PYSITELIB}/IPython/nbformat/v2/tests/nbexamples.py -${PYSITELIB}/IPython/nbformat/v2/tests/test_json.py -${PYSITELIB}/IPython/nbformat/v2/tests/test_nbbase.py -${PYSITELIB}/IPython/nbformat/v2/tests/test_nbpy.py ${PYSITELIB}/IPython/nbformat/v3/__init__.py ${PYSITELIB}/IPython/nbformat/v3/__init__.pyc ${PYSITELIB}/IPython/nbformat/v3/__init__.pyo +${PYSITELIB}/IPython/nbformat/v3/convert.py ${PYSITELIB}/IPython/nbformat/v3/convert.pyc ${PYSITELIB}/IPython/nbformat/v3/convert.pyo +${PYSITELIB}/IPython/nbformat/v3/nbbase.py ${PYSITELIB}/IPython/nbformat/v3/nbbase.pyc ${PYSITELIB}/IPython/nbformat/v3/nbbase.pyo +${PYSITELIB}/IPython/nbformat/v3/nbformat.v3.schema.json +${PYSITELIB}/IPython/nbformat/v3/nbjson.py ${PYSITELIB}/IPython/nbformat/v3/nbjson.pyc ${PYSITELIB}/IPython/nbformat/v3/nbjson.pyo +${PYSITELIB}/IPython/nbformat/v3/nbpy.py ${PYSITELIB}/IPython/nbformat/v3/nbpy.pyc ${PYSITELIB}/IPython/nbformat/v3/nbpy.pyo +${PYSITELIB}/IPython/nbformat/v3/rwbase.py ${PYSITELIB}/IPython/nbformat/v3/rwbase.pyc ${PYSITELIB}/IPython/nbformat/v3/rwbase.pyo -${PYSITELIB}/IPython/nbformat/v3/validator.pyc -${PYSITELIB}/IPython/nbformat/v3/validator.pyo -${PYSITELIB}/IPython/nbformat/v3/convert.py -${PYSITELIB}/IPython/nbformat/v3/nbbase.py -${PYSITELIB}/IPython/nbformat/v3/nbjson.py -${PYSITELIB}/IPython/nbformat/v3/nbpy.py -${PYSITELIB}/IPython/nbformat/v3/rwbase.py ${PYSITELIB}/IPython/nbformat/v3/tests/__init__.py ${PYSITELIB}/IPython/nbformat/v3/tests/__init__.pyc ${PYSITELIB}/IPython/nbformat/v3/tests/__init__.pyo +${PYSITELIB}/IPython/nbformat/v3/tests/formattest.py ${PYSITELIB}/IPython/nbformat/v3/tests/formattest.pyc ${PYSITELIB}/IPython/nbformat/v3/tests/formattest.pyo +${PYSITELIB}/IPython/nbformat/v3/tests/nbexamples.py ${PYSITELIB}/IPython/nbformat/v3/tests/nbexamples.pyc ${PYSITELIB}/IPython/nbformat/v3/tests/nbexamples.pyo +${PYSITELIB}/IPython/nbformat/v3/tests/test_json.py ${PYSITELIB}/IPython/nbformat/v3/tests/test_json.pyc ${PYSITELIB}/IPython/nbformat/v3/tests/test_json.pyo +${PYSITELIB}/IPython/nbformat/v3/tests/test_misc.py +${PYSITELIB}/IPython/nbformat/v3/tests/test_misc.pyc +${PYSITELIB}/IPython/nbformat/v3/tests/test_misc.pyo +${PYSITELIB}/IPython/nbformat/v3/tests/test_nbbase.py ${PYSITELIB}/IPython/nbformat/v3/tests/test_nbbase.pyc ${PYSITELIB}/IPython/nbformat/v3/tests/test_nbbase.pyo +${PYSITELIB}/IPython/nbformat/v3/tests/test_nbpy.py ${PYSITELIB}/IPython/nbformat/v3/tests/test_nbpy.pyc ${PYSITELIB}/IPython/nbformat/v3/tests/test_nbpy.pyo -${PYSITELIB}/IPython/nbformat/v3/tests/formattest.py -${PYSITELIB}/IPython/nbformat/v3/tests/nbexamples.py -${PYSITELIB}/IPython/nbformat/v3/tests/test_json.py -${PYSITELIB}/IPython/nbformat/v3/tests/test_nbbase.py -${PYSITELIB}/IPython/nbformat/v3/tests/test_nbpy.py -${PYSITELIB}/IPython/nbformat/v3/validator.py +${PYSITELIB}/IPython/nbformat/v4/__init__.py +${PYSITELIB}/IPython/nbformat/v4/__init__.pyc +${PYSITELIB}/IPython/nbformat/v4/__init__.pyo +${PYSITELIB}/IPython/nbformat/v4/convert.py +${PYSITELIB}/IPython/nbformat/v4/convert.pyc +${PYSITELIB}/IPython/nbformat/v4/convert.pyo +${PYSITELIB}/IPython/nbformat/v4/nbbase.py +${PYSITELIB}/IPython/nbformat/v4/nbbase.pyc +${PYSITELIB}/IPython/nbformat/v4/nbbase.pyo +${PYSITELIB}/IPython/nbformat/v4/nbformat.v4.schema.json +${PYSITELIB}/IPython/nbformat/v4/nbjson.py +${PYSITELIB}/IPython/nbformat/v4/nbjson.pyc +${PYSITELIB}/IPython/nbformat/v4/nbjson.pyo +${PYSITELIB}/IPython/nbformat/v4/rwbase.py +${PYSITELIB}/IPython/nbformat/v4/rwbase.pyc +${PYSITELIB}/IPython/nbformat/v4/rwbase.pyo +${PYSITELIB}/IPython/nbformat/v4/tests/__init__.py +${PYSITELIB}/IPython/nbformat/v4/tests/__init__.pyc +${PYSITELIB}/IPython/nbformat/v4/tests/__init__.pyo +${PYSITELIB}/IPython/nbformat/v4/tests/formattest.py +${PYSITELIB}/IPython/nbformat/v4/tests/formattest.pyc +${PYSITELIB}/IPython/nbformat/v4/tests/formattest.pyo +${PYSITELIB}/IPython/nbformat/v4/tests/nbexamples.py +${PYSITELIB}/IPython/nbformat/v4/tests/nbexamples.pyc +${PYSITELIB}/IPython/nbformat/v4/tests/nbexamples.pyo +${PYSITELIB}/IPython/nbformat/v4/tests/test_convert.py +${PYSITELIB}/IPython/nbformat/v4/tests/test_convert.pyc +${PYSITELIB}/IPython/nbformat/v4/tests/test_convert.pyo +${PYSITELIB}/IPython/nbformat/v4/tests/test_json.py +${PYSITELIB}/IPython/nbformat/v4/tests/test_json.pyc +${PYSITELIB}/IPython/nbformat/v4/tests/test_json.pyo +${PYSITELIB}/IPython/nbformat/v4/tests/test_nbbase.py +${PYSITELIB}/IPython/nbformat/v4/tests/test_nbbase.pyc +${PYSITELIB}/IPython/nbformat/v4/tests/test_nbbase.pyo +${PYSITELIB}/IPython/nbformat/v4/tests/test_validate.py +${PYSITELIB}/IPython/nbformat/v4/tests/test_validate.pyc +${PYSITELIB}/IPython/nbformat/v4/tests/test_validate.pyo +${PYSITELIB}/IPython/nbformat/validator.py +${PYSITELIB}/IPython/nbformat/validator.pyc +${PYSITELIB}/IPython/nbformat/validator.pyo ${PYSITELIB}/IPython/parallel/__init__.py ${PYSITELIB}/IPython/parallel/__init__.pyc ${PYSITELIB}/IPython/parallel/__init__.pyo -${PYSITELIB}/IPython/parallel/cluster.pyc -${PYSITELIB}/IPython/parallel/cluster.pyo -${PYSITELIB}/IPython/parallel/error.pyc -${PYSITELIB}/IPython/parallel/error.pyo -${PYSITELIB}/IPython/parallel/factory.pyc -${PYSITELIB}/IPython/parallel/factory.pyo -${PYSITELIB}/IPython/parallel/logger.pyc -${PYSITELIB}/IPython/parallel/logger.pyo -${PYSITELIB}/IPython/parallel/util.pyc -${PYSITELIB}/IPython/parallel/util.pyo ${PYSITELIB}/IPython/parallel/apps/__init__.py ${PYSITELIB}/IPython/parallel/apps/__init__.pyc ${PYSITELIB}/IPython/parallel/apps/__init__.pyo +${PYSITELIB}/IPython/parallel/apps/baseapp.py ${PYSITELIB}/IPython/parallel/apps/baseapp.pyc ${PYSITELIB}/IPython/parallel/apps/baseapp.pyo +${PYSITELIB}/IPython/parallel/apps/ipclusterapp.py ${PYSITELIB}/IPython/parallel/apps/ipclusterapp.pyc ${PYSITELIB}/IPython/parallel/apps/ipclusterapp.pyo +${PYSITELIB}/IPython/parallel/apps/ipcontrollerapp.py ${PYSITELIB}/IPython/parallel/apps/ipcontrollerapp.pyc ${PYSITELIB}/IPython/parallel/apps/ipcontrollerapp.pyo +${PYSITELIB}/IPython/parallel/apps/ipengineapp.py ${PYSITELIB}/IPython/parallel/apps/ipengineapp.pyc ${PYSITELIB}/IPython/parallel/apps/ipengineapp.pyo +${PYSITELIB}/IPython/parallel/apps/iploggerapp.py ${PYSITELIB}/IPython/parallel/apps/iploggerapp.pyc ${PYSITELIB}/IPython/parallel/apps/iploggerapp.pyo +${PYSITELIB}/IPython/parallel/apps/launcher.py ${PYSITELIB}/IPython/parallel/apps/launcher.pyc ${PYSITELIB}/IPython/parallel/apps/launcher.pyo +${PYSITELIB}/IPython/parallel/apps/logwatcher.py ${PYSITELIB}/IPython/parallel/apps/logwatcher.pyc ${PYSITELIB}/IPython/parallel/apps/logwatcher.pyo +${PYSITELIB}/IPython/parallel/apps/win32support.py ${PYSITELIB}/IPython/parallel/apps/win32support.pyc ${PYSITELIB}/IPython/parallel/apps/win32support.pyo +${PYSITELIB}/IPython/parallel/apps/winhpcjob.py ${PYSITELIB}/IPython/parallel/apps/winhpcjob.pyc ${PYSITELIB}/IPython/parallel/apps/winhpcjob.pyo -${PYSITELIB}/IPython/parallel/apps/baseapp.py -${PYSITELIB}/IPython/parallel/apps/ipclusterapp.py -${PYSITELIB}/IPython/parallel/apps/ipcontrollerapp.py -${PYSITELIB}/IPython/parallel/apps/ipengineapp.py -${PYSITELIB}/IPython/parallel/apps/iploggerapp.py -${PYSITELIB}/IPython/parallel/apps/launcher.py -${PYSITELIB}/IPython/parallel/apps/logwatcher.py -${PYSITELIB}/IPython/parallel/apps/win32support.py -${PYSITELIB}/IPython/parallel/apps/winhpcjob.py ${PYSITELIB}/IPython/parallel/client/__init__.py ${PYSITELIB}/IPython/parallel/client/__init__.pyc ${PYSITELIB}/IPython/parallel/client/__init__.pyo +${PYSITELIB}/IPython/parallel/client/asyncresult.py ${PYSITELIB}/IPython/parallel/client/asyncresult.pyc ${PYSITELIB}/IPython/parallel/client/asyncresult.pyo +${PYSITELIB}/IPython/parallel/client/client.py ${PYSITELIB}/IPython/parallel/client/client.pyc ${PYSITELIB}/IPython/parallel/client/client.pyo +${PYSITELIB}/IPython/parallel/client/magics.py ${PYSITELIB}/IPython/parallel/client/magics.pyc ${PYSITELIB}/IPython/parallel/client/magics.pyo +${PYSITELIB}/IPython/parallel/client/map.py ${PYSITELIB}/IPython/parallel/client/map.pyc ${PYSITELIB}/IPython/parallel/client/map.pyo +${PYSITELIB}/IPython/parallel/client/remotefunction.py ${PYSITELIB}/IPython/parallel/client/remotefunction.pyc ${PYSITELIB}/IPython/parallel/client/remotefunction.pyo +${PYSITELIB}/IPython/parallel/client/view.py ${PYSITELIB}/IPython/parallel/client/view.pyc ${PYSITELIB}/IPython/parallel/client/view.pyo -${PYSITELIB}/IPython/parallel/client/asyncresult.py -${PYSITELIB}/IPython/parallel/client/client.py -${PYSITELIB}/IPython/parallel/client/magics.py -${PYSITELIB}/IPython/parallel/client/map.py -${PYSITELIB}/IPython/parallel/client/remotefunction.py -${PYSITELIB}/IPython/parallel/client/view.py ${PYSITELIB}/IPython/parallel/cluster.py +${PYSITELIB}/IPython/parallel/cluster.pyc +${PYSITELIB}/IPython/parallel/cluster.pyo ${PYSITELIB}/IPython/parallel/controller/__init__.py -${PYSITELIB}/IPython/parallel/controller/__main__.py ${PYSITELIB}/IPython/parallel/controller/__init__.pyc ${PYSITELIB}/IPython/parallel/controller/__init__.pyo +${PYSITELIB}/IPython/parallel/controller/__main__.py ${PYSITELIB}/IPython/parallel/controller/__main__.pyc ${PYSITELIB}/IPython/parallel/controller/__main__.pyo +${PYSITELIB}/IPython/parallel/controller/dependency.py ${PYSITELIB}/IPython/parallel/controller/dependency.pyc ${PYSITELIB}/IPython/parallel/controller/dependency.pyo +${PYSITELIB}/IPython/parallel/controller/dictdb.py ${PYSITELIB}/IPython/parallel/controller/dictdb.pyc ${PYSITELIB}/IPython/parallel/controller/dictdb.pyo +${PYSITELIB}/IPython/parallel/controller/heartmonitor.py ${PYSITELIB}/IPython/parallel/controller/heartmonitor.pyc ${PYSITELIB}/IPython/parallel/controller/heartmonitor.pyo +${PYSITELIB}/IPython/parallel/controller/hub.py ${PYSITELIB}/IPython/parallel/controller/hub.pyc ${PYSITELIB}/IPython/parallel/controller/hub.pyo +${PYSITELIB}/IPython/parallel/controller/mongodb.py ${PYSITELIB}/IPython/parallel/controller/mongodb.pyc ${PYSITELIB}/IPython/parallel/controller/mongodb.pyo +${PYSITELIB}/IPython/parallel/controller/scheduler.py ${PYSITELIB}/IPython/parallel/controller/scheduler.pyc ${PYSITELIB}/IPython/parallel/controller/scheduler.pyo +${PYSITELIB}/IPython/parallel/controller/sqlitedb.py ${PYSITELIB}/IPython/parallel/controller/sqlitedb.pyc ${PYSITELIB}/IPython/parallel/controller/sqlitedb.pyo -${PYSITELIB}/IPython/parallel/controller/dependency.py -${PYSITELIB}/IPython/parallel/controller/dictdb.py -${PYSITELIB}/IPython/parallel/controller/heartmonitor.py -${PYSITELIB}/IPython/parallel/controller/hub.py -${PYSITELIB}/IPython/parallel/controller/mongodb.py -${PYSITELIB}/IPython/parallel/controller/scheduler.py -${PYSITELIB}/IPython/parallel/controller/sqlitedb.py ${PYSITELIB}/IPython/parallel/engine/__init__.py -${PYSITELIB}/IPython/parallel/engine/__main__.py ${PYSITELIB}/IPython/parallel/engine/__init__.pyc ${PYSITELIB}/IPython/parallel/engine/__init__.pyo +${PYSITELIB}/IPython/parallel/engine/__main__.py ${PYSITELIB}/IPython/parallel/engine/__main__.pyc ${PYSITELIB}/IPython/parallel/engine/__main__.pyo +${PYSITELIB}/IPython/parallel/engine/engine.py ${PYSITELIB}/IPython/parallel/engine/engine.pyc ${PYSITELIB}/IPython/parallel/engine/engine.pyo -${PYSITELIB}/IPython/parallel/engine/engine.py ${PYSITELIB}/IPython/parallel/error.py +${PYSITELIB}/IPython/parallel/error.pyc +${PYSITELIB}/IPython/parallel/error.pyo ${PYSITELIB}/IPython/parallel/factory.py +${PYSITELIB}/IPython/parallel/factory.pyc +${PYSITELIB}/IPython/parallel/factory.pyo ${PYSITELIB}/IPython/parallel/logger.py +${PYSITELIB}/IPython/parallel/logger.pyc +${PYSITELIB}/IPython/parallel/logger.pyo ${PYSITELIB}/IPython/parallel/tests/__init__.py ${PYSITELIB}/IPython/parallel/tests/__init__.pyc ${PYSITELIB}/IPython/parallel/tests/__init__.pyo +${PYSITELIB}/IPython/parallel/tests/clienttest.py ${PYSITELIB}/IPython/parallel/tests/clienttest.pyc ${PYSITELIB}/IPython/parallel/tests/clienttest.pyo +${PYSITELIB}/IPython/parallel/tests/test_asyncresult.py ${PYSITELIB}/IPython/parallel/tests/test_asyncresult.pyc ${PYSITELIB}/IPython/parallel/tests/test_asyncresult.pyo +${PYSITELIB}/IPython/parallel/tests/test_client.py ${PYSITELIB}/IPython/parallel/tests/test_client.pyc ${PYSITELIB}/IPython/parallel/tests/test_client.pyo +${PYSITELIB}/IPython/parallel/tests/test_db.py ${PYSITELIB}/IPython/parallel/tests/test_db.pyc ${PYSITELIB}/IPython/parallel/tests/test_db.pyo +${PYSITELIB}/IPython/parallel/tests/test_dependency.py ${PYSITELIB}/IPython/parallel/tests/test_dependency.pyc ${PYSITELIB}/IPython/parallel/tests/test_dependency.pyo +${PYSITELIB}/IPython/parallel/tests/test_launcher.py ${PYSITELIB}/IPython/parallel/tests/test_launcher.pyc ${PYSITELIB}/IPython/parallel/tests/test_launcher.pyo +${PYSITELIB}/IPython/parallel/tests/test_lbview.py ${PYSITELIB}/IPython/parallel/tests/test_lbview.pyc ${PYSITELIB}/IPython/parallel/tests/test_lbview.pyo +${PYSITELIB}/IPython/parallel/tests/test_magics.py ${PYSITELIB}/IPython/parallel/tests/test_magics.pyc ${PYSITELIB}/IPython/parallel/tests/test_magics.pyo +${PYSITELIB}/IPython/parallel/tests/test_mongodb.py ${PYSITELIB}/IPython/parallel/tests/test_mongodb.pyc ${PYSITELIB}/IPython/parallel/tests/test_mongodb.pyo +${PYSITELIB}/IPython/parallel/tests/test_view.py ${PYSITELIB}/IPython/parallel/tests/test_view.pyc ${PYSITELIB}/IPython/parallel/tests/test_view.pyo -${PYSITELIB}/IPython/parallel/tests/clienttest.py -${PYSITELIB}/IPython/parallel/tests/test_asyncresult.py -${PYSITELIB}/IPython/parallel/tests/test_client.py -${PYSITELIB}/IPython/parallel/tests/test_db.py -${PYSITELIB}/IPython/parallel/tests/test_dependency.py -${PYSITELIB}/IPython/parallel/tests/test_launcher.py -${PYSITELIB}/IPython/parallel/tests/test_lbview.py -${PYSITELIB}/IPython/parallel/tests/test_magics.py -${PYSITELIB}/IPython/parallel/tests/test_mongodb.py -${PYSITELIB}/IPython/parallel/tests/test_view.py ${PYSITELIB}/IPython/parallel/util.py +${PYSITELIB}/IPython/parallel/util.pyc +${PYSITELIB}/IPython/parallel/util.pyo ${PYSITELIB}/IPython/qt/__init__.py ${PYSITELIB}/IPython/qt/__init__.pyc ${PYSITELIB}/IPython/qt/__init__.pyo +${PYSITELIB}/IPython/qt/base_frontend_mixin.py ${PYSITELIB}/IPython/qt/base_frontend_mixin.pyc ${PYSITELIB}/IPython/qt/base_frontend_mixin.pyo +${PYSITELIB}/IPython/qt/client.py ${PYSITELIB}/IPython/qt/client.pyc ${PYSITELIB}/IPython/qt/client.pyo -${PYSITELIB}/IPython/qt/inprocess.pyc -${PYSITELIB}/IPython/qt/inprocess.pyo -${PYSITELIB}/IPython/qt/kernel_mixins.pyc -${PYSITELIB}/IPython/qt/kernel_mixins.pyo -${PYSITELIB}/IPython/qt/manager.pyc -${PYSITELIB}/IPython/qt/manager.pyo -${PYSITELIB}/IPython/qt/rich_text.pyc -${PYSITELIB}/IPython/qt/rich_text.pyo -${PYSITELIB}/IPython/qt/svg.pyc -${PYSITELIB}/IPython/qt/svg.pyo -${PYSITELIB}/IPython/qt/util.pyc -${PYSITELIB}/IPython/qt/util.pyo -${PYSITELIB}/IPython/qt/base_frontend_mixin.py -${PYSITELIB}/IPython/qt/client.py ${PYSITELIB}/IPython/qt/console/__init__.py -${PYSITELIB}/IPython/qt/console/__main__.py ${PYSITELIB}/IPython/qt/console/__init__.pyc ${PYSITELIB}/IPython/qt/console/__init__.pyo +${PYSITELIB}/IPython/qt/console/__main__.py ${PYSITELIB}/IPython/qt/console/__main__.pyc ${PYSITELIB}/IPython/qt/console/__main__.pyo +${PYSITELIB}/IPython/qt/console/ansi_code_processor.py ${PYSITELIB}/IPython/qt/console/ansi_code_processor.pyc ${PYSITELIB}/IPython/qt/console/ansi_code_processor.pyo +${PYSITELIB}/IPython/qt/console/bracket_matcher.py ${PYSITELIB}/IPython/qt/console/bracket_matcher.pyc ${PYSITELIB}/IPython/qt/console/bracket_matcher.pyo +${PYSITELIB}/IPython/qt/console/call_tip_widget.py ${PYSITELIB}/IPython/qt/console/call_tip_widget.pyc ${PYSITELIB}/IPython/qt/console/call_tip_widget.pyo +${PYSITELIB}/IPython/qt/console/completion_html.py ${PYSITELIB}/IPython/qt/console/completion_html.pyc ${PYSITELIB}/IPython/qt/console/completion_html.pyo -${PYSITELIB}/IPython/qt/console/completion_lexer.pyc -${PYSITELIB}/IPython/qt/console/completion_lexer.pyo +${PYSITELIB}/IPython/qt/console/completion_plain.py ${PYSITELIB}/IPython/qt/console/completion_plain.pyc ${PYSITELIB}/IPython/qt/console/completion_plain.pyo +${PYSITELIB}/IPython/qt/console/completion_widget.py ${PYSITELIB}/IPython/qt/console/completion_widget.pyc ${PYSITELIB}/IPython/qt/console/completion_widget.pyo +${PYSITELIB}/IPython/qt/console/console_widget.py ${PYSITELIB}/IPython/qt/console/console_widget.pyc ${PYSITELIB}/IPython/qt/console/console_widget.pyo +${PYSITELIB}/IPython/qt/console/frontend_widget.py ${PYSITELIB}/IPython/qt/console/frontend_widget.pyc ${PYSITELIB}/IPython/qt/console/frontend_widget.pyo +${PYSITELIB}/IPython/qt/console/history_console_widget.py ${PYSITELIB}/IPython/qt/console/history_console_widget.pyc ${PYSITELIB}/IPython/qt/console/history_console_widget.pyo +${PYSITELIB}/IPython/qt/console/ipython_widget.py ${PYSITELIB}/IPython/qt/console/ipython_widget.pyc ${PYSITELIB}/IPython/qt/console/ipython_widget.pyo +${PYSITELIB}/IPython/qt/console/kill_ring.py ${PYSITELIB}/IPython/qt/console/kill_ring.pyc ${PYSITELIB}/IPython/qt/console/kill_ring.pyo +${PYSITELIB}/IPython/qt/console/magic_helper.py +${PYSITELIB}/IPython/qt/console/magic_helper.pyc +${PYSITELIB}/IPython/qt/console/magic_helper.pyo +${PYSITELIB}/IPython/qt/console/mainwindow.py ${PYSITELIB}/IPython/qt/console/mainwindow.pyc ${PYSITELIB}/IPython/qt/console/mainwindow.pyo +${PYSITELIB}/IPython/qt/console/pygments_highlighter.py ${PYSITELIB}/IPython/qt/console/pygments_highlighter.pyc ${PYSITELIB}/IPython/qt/console/pygments_highlighter.pyo +${PYSITELIB}/IPython/qt/console/qtconsoleapp.py ${PYSITELIB}/IPython/qt/console/qtconsoleapp.pyc ${PYSITELIB}/IPython/qt/console/qtconsoleapp.pyo +${PYSITELIB}/IPython/qt/console/resources/icon/IPythonConsole.svg +${PYSITELIB}/IPython/qt/console/rich_ipython_widget.py ${PYSITELIB}/IPython/qt/console/rich_ipython_widget.pyc ${PYSITELIB}/IPython/qt/console/rich_ipython_widget.pyo +${PYSITELIB}/IPython/qt/console/styles.py ${PYSITELIB}/IPython/qt/console/styles.pyc ${PYSITELIB}/IPython/qt/console/styles.pyo -${PYSITELIB}/IPython/qt/console/ansi_code_processor.py -${PYSITELIB}/IPython/qt/console/bracket_matcher.py -${PYSITELIB}/IPython/qt/console/call_tip_widget.py -${PYSITELIB}/IPython/qt/console/completion_html.py -${PYSITELIB}/IPython/qt/console/completion_lexer.py -${PYSITELIB}/IPython/qt/console/completion_plain.py -${PYSITELIB}/IPython/qt/console/completion_widget.py -${PYSITELIB}/IPython/qt/console/console_widget.py -${PYSITELIB}/IPython/qt/console/frontend_widget.py -${PYSITELIB}/IPython/qt/console/history_console_widget.py -${PYSITELIB}/IPython/qt/console/ipython_widget.py -${PYSITELIB}/IPython/qt/console/kill_ring.py -${PYSITELIB}/IPython/qt/console/mainwindow.py -${PYSITELIB}/IPython/qt/console/pygments_highlighter.py -${PYSITELIB}/IPython/qt/console/qtconsoleapp.py -${PYSITELIB}/IPython/qt/console/resources/icon/IPythonConsole.svg -${PYSITELIB}/IPython/qt/console/rich_ipython_widget.py -${PYSITELIB}/IPython/qt/console/styles.py ${PYSITELIB}/IPython/qt/console/tests/__init__.py ${PYSITELIB}/IPython/qt/console/tests/__init__.pyc ${PYSITELIB}/IPython/qt/console/tests/__init__.pyo +${PYSITELIB}/IPython/qt/console/tests/test_ansi_code_processor.py ${PYSITELIB}/IPython/qt/console/tests/test_ansi_code_processor.pyc ${PYSITELIB}/IPython/qt/console/tests/test_ansi_code_processor.pyo +${PYSITELIB}/IPython/qt/console/tests/test_app.py ${PYSITELIB}/IPython/qt/console/tests/test_app.pyc ${PYSITELIB}/IPython/qt/console/tests/test_app.pyo -${PYSITELIB}/IPython/qt/console/tests/test_completion_lexer.pyc -${PYSITELIB}/IPython/qt/console/tests/test_completion_lexer.pyo +${PYSITELIB}/IPython/qt/console/tests/test_console_widget.py ${PYSITELIB}/IPython/qt/console/tests/test_console_widget.pyc ${PYSITELIB}/IPython/qt/console/tests/test_console_widget.pyo +${PYSITELIB}/IPython/qt/console/tests/test_kill_ring.py ${PYSITELIB}/IPython/qt/console/tests/test_kill_ring.pyc ${PYSITELIB}/IPython/qt/console/tests/test_kill_ring.pyo -${PYSITELIB}/IPython/qt/console/tests/test_ansi_code_processor.py -${PYSITELIB}/IPython/qt/console/tests/test_app.py -${PYSITELIB}/IPython/qt/console/tests/test_completion_lexer.py -${PYSITELIB}/IPython/qt/console/tests/test_console_widget.py -${PYSITELIB}/IPython/qt/console/tests/test_kill_ring.py ${PYSITELIB}/IPython/qt/inprocess.py +${PYSITELIB}/IPython/qt/inprocess.pyc +${PYSITELIB}/IPython/qt/inprocess.pyo ${PYSITELIB}/IPython/qt/kernel_mixins.py +${PYSITELIB}/IPython/qt/kernel_mixins.pyc +${PYSITELIB}/IPython/qt/kernel_mixins.pyo ${PYSITELIB}/IPython/qt/manager.py +${PYSITELIB}/IPython/qt/manager.pyc +${PYSITELIB}/IPython/qt/manager.pyo ${PYSITELIB}/IPython/qt/rich_text.py +${PYSITELIB}/IPython/qt/rich_text.pyc +${PYSITELIB}/IPython/qt/rich_text.pyo ${PYSITELIB}/IPython/qt/svg.py +${PYSITELIB}/IPython/qt/svg.pyc +${PYSITELIB}/IPython/qt/svg.pyo ${PYSITELIB}/IPython/qt/util.py +${PYSITELIB}/IPython/qt/util.pyc +${PYSITELIB}/IPython/qt/util.pyo ${PYSITELIB}/IPython/sphinxext/__init__.py ${PYSITELIB}/IPython/sphinxext/__init__.pyc ${PYSITELIB}/IPython/sphinxext/__init__.pyo +${PYSITELIB}/IPython/sphinxext/custom_doctests.py ${PYSITELIB}/IPython/sphinxext/custom_doctests.pyc ${PYSITELIB}/IPython/sphinxext/custom_doctests.pyo +${PYSITELIB}/IPython/sphinxext/ipython_console_highlighting.py ${PYSITELIB}/IPython/sphinxext/ipython_console_highlighting.pyc ${PYSITELIB}/IPython/sphinxext/ipython_console_highlighting.pyo +${PYSITELIB}/IPython/sphinxext/ipython_directive.py ${PYSITELIB}/IPython/sphinxext/ipython_directive.pyc ${PYSITELIB}/IPython/sphinxext/ipython_directive.pyo -${PYSITELIB}/IPython/sphinxext/custom_doctests.py -${PYSITELIB}/IPython/sphinxext/ipython_console_highlighting.py -${PYSITELIB}/IPython/sphinxext/ipython_directive.py ${PYSITELIB}/IPython/terminal/__init__.py ${PYSITELIB}/IPython/terminal/__init__.pyc ${PYSITELIB}/IPython/terminal/__init__.pyo -${PYSITELIB}/IPython/terminal/embed.pyc -${PYSITELIB}/IPython/terminal/embed.pyo -${PYSITELIB}/IPython/terminal/interactiveshell.pyc -${PYSITELIB}/IPython/terminal/interactiveshell.pyo -${PYSITELIB}/IPython/terminal/ipapp.pyc -${PYSITELIB}/IPython/terminal/ipapp.pyo ${PYSITELIB}/IPython/terminal/console/__init__.py -${PYSITELIB}/IPython/terminal/console/__main__.py ${PYSITELIB}/IPython/terminal/console/__init__.pyc ${PYSITELIB}/IPython/terminal/console/__init__.pyo +${PYSITELIB}/IPython/terminal/console/__main__.py ${PYSITELIB}/IPython/terminal/console/__main__.pyc ${PYSITELIB}/IPython/terminal/console/__main__.pyo +${PYSITELIB}/IPython/terminal/console/app.py ${PYSITELIB}/IPython/terminal/console/app.pyc ${PYSITELIB}/IPython/terminal/console/app.pyo +${PYSITELIB}/IPython/terminal/console/completer.py ${PYSITELIB}/IPython/terminal/console/completer.pyc ${PYSITELIB}/IPython/terminal/console/completer.pyo +${PYSITELIB}/IPython/terminal/console/interactiveshell.py ${PYSITELIB}/IPython/terminal/console/interactiveshell.pyc ${PYSITELIB}/IPython/terminal/console/interactiveshell.pyo -${PYSITELIB}/IPython/terminal/console/app.py -${PYSITELIB}/IPython/terminal/console/completer.py -${PYSITELIB}/IPython/terminal/console/interactiveshell.py ${PYSITELIB}/IPython/terminal/console/tests/__init__.py ${PYSITELIB}/IPython/terminal/console/tests/__init__.pyc ${PYSITELIB}/IPython/terminal/console/tests/__init__.pyo +${PYSITELIB}/IPython/terminal/console/tests/test_console.py ${PYSITELIB}/IPython/terminal/console/tests/test_console.pyc ${PYSITELIB}/IPython/terminal/console/tests/test_console.pyo +${PYSITELIB}/IPython/terminal/console/tests/test_image_handler.py ${PYSITELIB}/IPython/terminal/console/tests/test_image_handler.pyc ${PYSITELIB}/IPython/terminal/console/tests/test_image_handler.pyo +${PYSITELIB}/IPython/terminal/console/tests/writetofile.py ${PYSITELIB}/IPython/terminal/console/tests/writetofile.pyc ${PYSITELIB}/IPython/terminal/console/tests/writetofile.pyo -${PYSITELIB}/IPython/terminal/console/tests/test_console.py -${PYSITELIB}/IPython/terminal/console/tests/test_image_handler.py -${PYSITELIB}/IPython/terminal/console/tests/writetofile.py +${PYSITELIB}/IPython/terminal/console/zmqhistory.py +${PYSITELIB}/IPython/terminal/console/zmqhistory.pyc +${PYSITELIB}/IPython/terminal/console/zmqhistory.pyo ${PYSITELIB}/IPython/terminal/embed.py +${PYSITELIB}/IPython/terminal/embed.pyc +${PYSITELIB}/IPython/terminal/embed.pyo ${PYSITELIB}/IPython/terminal/interactiveshell.py +${PYSITELIB}/IPython/terminal/interactiveshell.pyc +${PYSITELIB}/IPython/terminal/interactiveshell.pyo ${PYSITELIB}/IPython/terminal/ipapp.py +${PYSITELIB}/IPython/terminal/ipapp.pyc +${PYSITELIB}/IPython/terminal/ipapp.pyo ${PYSITELIB}/IPython/terminal/tests/__init__.py ${PYSITELIB}/IPython/terminal/tests/__init__.pyc ${PYSITELIB}/IPython/terminal/tests/__init__.pyo +${PYSITELIB}/IPython/terminal/tests/test_embed.py ${PYSITELIB}/IPython/terminal/tests/test_embed.pyc ${PYSITELIB}/IPython/terminal/tests/test_embed.pyo +${PYSITELIB}/IPython/terminal/tests/test_help.py ${PYSITELIB}/IPython/terminal/tests/test_help.pyc ${PYSITELIB}/IPython/terminal/tests/test_help.pyo +${PYSITELIB}/IPython/terminal/tests/test_interactivshell.py ${PYSITELIB}/IPython/terminal/tests/test_interactivshell.pyc ${PYSITELIB}/IPython/terminal/tests/test_interactivshell.pyo -${PYSITELIB}/IPython/terminal/tests/test_embed.py -${PYSITELIB}/IPython/terminal/tests/test_help.py -${PYSITELIB}/IPython/terminal/tests/test_interactivshell.py ${PYSITELIB}/IPython/testing/__init__.py -${PYSITELIB}/IPython/testing/__main__.py ${PYSITELIB}/IPython/testing/__init__.pyc ${PYSITELIB}/IPython/testing/__init__.pyo +${PYSITELIB}/IPython/testing/__main__.py ${PYSITELIB}/IPython/testing/__main__.pyc ${PYSITELIB}/IPython/testing/__main__.pyo +${PYSITELIB}/IPython/testing/decorators.py ${PYSITELIB}/IPython/testing/decorators.pyc ${PYSITELIB}/IPython/testing/decorators.pyo +${PYSITELIB}/IPython/testing/globalipapp.py ${PYSITELIB}/IPython/testing/globalipapp.pyc ${PYSITELIB}/IPython/testing/globalipapp.pyo +${PYSITELIB}/IPython/testing/iptest.py ${PYSITELIB}/IPython/testing/iptest.pyc ${PYSITELIB}/IPython/testing/iptest.pyo +${PYSITELIB}/IPython/testing/iptestcontroller.py ${PYSITELIB}/IPython/testing/iptestcontroller.pyc ${PYSITELIB}/IPython/testing/iptestcontroller.pyo +${PYSITELIB}/IPython/testing/ipunittest.py ${PYSITELIB}/IPython/testing/ipunittest.pyc ${PYSITELIB}/IPython/testing/ipunittest.pyo -${PYSITELIB}/IPython/testing/skipdoctest.pyc -${PYSITELIB}/IPython/testing/skipdoctest.pyo -${PYSITELIB}/IPython/testing/tools.pyc -${PYSITELIB}/IPython/testing/tools.pyo -${PYSITELIB}/IPython/testing/decorators.py -${PYSITELIB}/IPython/testing/globalipapp.py -${PYSITELIB}/IPython/testing/iptest.py -${PYSITELIB}/IPython/testing/iptestcontroller.py -${PYSITELIB}/IPython/testing/ipunittest.py ${PYSITELIB}/IPython/testing/plugin/README.txt ${PYSITELIB}/IPython/testing/plugin/__init__.py ${PYSITELIB}/IPython/testing/plugin/__init__.pyc ${PYSITELIB}/IPython/testing/plugin/__init__.pyo +${PYSITELIB}/IPython/testing/plugin/dtexample.py ${PYSITELIB}/IPython/testing/plugin/dtexample.pyc ${PYSITELIB}/IPython/testing/plugin/dtexample.pyo +${PYSITELIB}/IPython/testing/plugin/ipdoctest.py ${PYSITELIB}/IPython/testing/plugin/ipdoctest.pyc ${PYSITELIB}/IPython/testing/plugin/ipdoctest.pyo +${PYSITELIB}/IPython/testing/plugin/iptest.py ${PYSITELIB}/IPython/testing/plugin/iptest.pyc ${PYSITELIB}/IPython/testing/plugin/iptest.pyo +${PYSITELIB}/IPython/testing/plugin/setup.py ${PYSITELIB}/IPython/testing/plugin/setup.pyc ${PYSITELIB}/IPython/testing/plugin/setup.pyo +${PYSITELIB}/IPython/testing/plugin/show_refs.py ${PYSITELIB}/IPython/testing/plugin/show_refs.pyc ${PYSITELIB}/IPython/testing/plugin/show_refs.pyo +${PYSITELIB}/IPython/testing/plugin/simple.py ${PYSITELIB}/IPython/testing/plugin/simple.pyc ${PYSITELIB}/IPython/testing/plugin/simple.pyo +${PYSITELIB}/IPython/testing/plugin/simplevars.py ${PYSITELIB}/IPython/testing/plugin/simplevars.pyc ${PYSITELIB}/IPython/testing/plugin/simplevars.pyo -${PYSITELIB}/IPython/testing/plugin/test_ipdoctest.pyc -${PYSITELIB}/IPython/testing/plugin/test_ipdoctest.pyo -${PYSITELIB}/IPython/testing/plugin/test_refs.pyc -${PYSITELIB}/IPython/testing/plugin/test_refs.pyo -${PYSITELIB}/IPython/testing/plugin/dtexample.py -${PYSITELIB}/IPython/testing/plugin/ipdoctest.py -${PYSITELIB}/IPython/testing/plugin/iptest.py -${PYSITELIB}/IPython/testing/plugin/setup.py -${PYSITELIB}/IPython/testing/plugin/show_refs.py -${PYSITELIB}/IPython/testing/plugin/simple.py -${PYSITELIB}/IPython/testing/plugin/simplevars.py ${PYSITELIB}/IPython/testing/plugin/test_combo.txt ${PYSITELIB}/IPython/testing/plugin/test_example.txt ${PYSITELIB}/IPython/testing/plugin/test_exampleip.txt ${PYSITELIB}/IPython/testing/plugin/test_ipdoctest.py +${PYSITELIB}/IPython/testing/plugin/test_ipdoctest.pyc +${PYSITELIB}/IPython/testing/plugin/test_ipdoctest.pyo ${PYSITELIB}/IPython/testing/plugin/test_refs.py +${PYSITELIB}/IPython/testing/plugin/test_refs.pyc +${PYSITELIB}/IPython/testing/plugin/test_refs.pyo ${PYSITELIB}/IPython/testing/skipdoctest.py +${PYSITELIB}/IPython/testing/skipdoctest.pyc +${PYSITELIB}/IPython/testing/skipdoctest.pyo ${PYSITELIB}/IPython/testing/tests/__init__.py ${PYSITELIB}/IPython/testing/tests/__init__.pyc ${PYSITELIB}/IPython/testing/tests/__init__.pyo +${PYSITELIB}/IPython/testing/tests/test_decorators.py ${PYSITELIB}/IPython/testing/tests/test_decorators.pyc ${PYSITELIB}/IPython/testing/tests/test_decorators.pyo +${PYSITELIB}/IPython/testing/tests/test_ipunittest.py ${PYSITELIB}/IPython/testing/tests/test_ipunittest.pyc ${PYSITELIB}/IPython/testing/tests/test_ipunittest.pyo +${PYSITELIB}/IPython/testing/tests/test_tools.py ${PYSITELIB}/IPython/testing/tests/test_tools.pyc ${PYSITELIB}/IPython/testing/tests/test_tools.pyo -${PYSITELIB}/IPython/testing/tests/test_decorators.py -${PYSITELIB}/IPython/testing/tests/test_ipunittest.py -${PYSITELIB}/IPython/testing/tests/test_tools.py ${PYSITELIB}/IPython/testing/tools.py +${PYSITELIB}/IPython/testing/tools.pyc +${PYSITELIB}/IPython/testing/tools.pyo ${PYSITELIB}/IPython/utils/PyColorize.py -${PYSITELIB}/IPython/utils/__init__.py ${PYSITELIB}/IPython/utils/PyColorize.pyc ${PYSITELIB}/IPython/utils/PyColorize.pyo +${PYSITELIB}/IPython/utils/__init__.py ${PYSITELIB}/IPython/utils/__init__.pyc ${PYSITELIB}/IPython/utils/__init__.pyo +${PYSITELIB}/IPython/utils/_process_cli.py ${PYSITELIB}/IPython/utils/_process_cli.pyc ${PYSITELIB}/IPython/utils/_process_cli.pyo +${PYSITELIB}/IPython/utils/_process_common.py ${PYSITELIB}/IPython/utils/_process_common.pyc ${PYSITELIB}/IPython/utils/_process_common.pyo +${PYSITELIB}/IPython/utils/_process_posix.py ${PYSITELIB}/IPython/utils/_process_posix.pyc ${PYSITELIB}/IPython/utils/_process_posix.pyo +${PYSITELIB}/IPython/utils/_process_win32.py ${PYSITELIB}/IPython/utils/_process_win32.pyc ${PYSITELIB}/IPython/utils/_process_win32.pyo +${PYSITELIB}/IPython/utils/_process_win32_controller.py ${PYSITELIB}/IPython/utils/_process_win32_controller.pyc ${PYSITELIB}/IPython/utils/_process_win32_controller.pyo +${PYSITELIB}/IPython/utils/_sysinfo.py ${PYSITELIB}/IPython/utils/_sysinfo.pyc ${PYSITELIB}/IPython/utils/_sysinfo.pyo +${PYSITELIB}/IPython/utils/_tokenize_py2.py ${PYSITELIB}/IPython/utils/_tokenize_py2.pyc ${PYSITELIB}/IPython/utils/_tokenize_py2.pyo +${PYSITELIB}/IPython/utils/_tokenize_py3.py ${PYSITELIB}/IPython/utils/_tokenize_py3.pyc ${PYSITELIB}/IPython/utils/_tokenize_py3.pyo +${PYSITELIB}/IPython/utils/capture.py ${PYSITELIB}/IPython/utils/capture.pyc ${PYSITELIB}/IPython/utils/capture.pyo +${PYSITELIB}/IPython/utils/codeutil.py ${PYSITELIB}/IPython/utils/codeutil.pyc ${PYSITELIB}/IPython/utils/codeutil.pyo +${PYSITELIB}/IPython/utils/coloransi.py ${PYSITELIB}/IPython/utils/coloransi.pyc ${PYSITELIB}/IPython/utils/coloransi.pyo +${PYSITELIB}/IPython/utils/contexts.py ${PYSITELIB}/IPython/utils/contexts.pyc ${PYSITELIB}/IPython/utils/contexts.pyo +${PYSITELIB}/IPython/utils/daemonize.py ${PYSITELIB}/IPython/utils/daemonize.pyc ${PYSITELIB}/IPython/utils/daemonize.pyo +${PYSITELIB}/IPython/utils/data.py ${PYSITELIB}/IPython/utils/data.pyc ${PYSITELIB}/IPython/utils/data.pyo +${PYSITELIB}/IPython/utils/decorators.py ${PYSITELIB}/IPython/utils/decorators.pyc ${PYSITELIB}/IPython/utils/decorators.pyo +${PYSITELIB}/IPython/utils/dir2.py ${PYSITELIB}/IPython/utils/dir2.pyc ${PYSITELIB}/IPython/utils/dir2.pyo +${PYSITELIB}/IPython/utils/doctestreload.py ${PYSITELIB}/IPython/utils/doctestreload.pyc ${PYSITELIB}/IPython/utils/doctestreload.pyo +${PYSITELIB}/IPython/utils/encoding.py ${PYSITELIB}/IPython/utils/encoding.pyc ${PYSITELIB}/IPython/utils/encoding.pyo +${PYSITELIB}/IPython/utils/eventful.py +${PYSITELIB}/IPython/utils/eventful.pyc +${PYSITELIB}/IPython/utils/eventful.pyo +${PYSITELIB}/IPython/utils/frame.py ${PYSITELIB}/IPython/utils/frame.pyc ${PYSITELIB}/IPython/utils/frame.pyo +${PYSITELIB}/IPython/utils/generics.py ${PYSITELIB}/IPython/utils/generics.pyc ${PYSITELIB}/IPython/utils/generics.pyo +${PYSITELIB}/IPython/utils/importstring.py ${PYSITELIB}/IPython/utils/importstring.pyc ${PYSITELIB}/IPython/utils/importstring.pyo +${PYSITELIB}/IPython/utils/io.py ${PYSITELIB}/IPython/utils/io.pyc ${PYSITELIB}/IPython/utils/io.pyo +${PYSITELIB}/IPython/utils/ipstruct.py ${PYSITELIB}/IPython/utils/ipstruct.pyc ${PYSITELIB}/IPython/utils/ipstruct.pyo +${PYSITELIB}/IPython/utils/jsonutil.py ${PYSITELIB}/IPython/utils/jsonutil.pyc ${PYSITELIB}/IPython/utils/jsonutil.pyo +${PYSITELIB}/IPython/utils/localinterfaces.py ${PYSITELIB}/IPython/utils/localinterfaces.pyc ${PYSITELIB}/IPython/utils/localinterfaces.pyo +${PYSITELIB}/IPython/utils/log.py +${PYSITELIB}/IPython/utils/log.pyc +${PYSITELIB}/IPython/utils/log.pyo +${PYSITELIB}/IPython/utils/module_paths.py ${PYSITELIB}/IPython/utils/module_paths.pyc ${PYSITELIB}/IPython/utils/module_paths.pyo +${PYSITELIB}/IPython/utils/openpy.py ${PYSITELIB}/IPython/utils/openpy.pyc ${PYSITELIB}/IPython/utils/openpy.pyo +${PYSITELIB}/IPython/utils/path.py ${PYSITELIB}/IPython/utils/path.pyc ${PYSITELIB}/IPython/utils/path.pyo +${PYSITELIB}/IPython/utils/pickleshare.py ${PYSITELIB}/IPython/utils/pickleshare.pyc ${PYSITELIB}/IPython/utils/pickleshare.pyo +${PYSITELIB}/IPython/utils/pickleutil.py ${PYSITELIB}/IPython/utils/pickleutil.pyc ${PYSITELIB}/IPython/utils/pickleutil.pyo +${PYSITELIB}/IPython/utils/process.py ${PYSITELIB}/IPython/utils/process.pyc ${PYSITELIB}/IPython/utils/process.pyo +${PYSITELIB}/IPython/utils/py3compat.py ${PYSITELIB}/IPython/utils/py3compat.pyc ${PYSITELIB}/IPython/utils/py3compat.pyo +${PYSITELIB}/IPython/utils/rlineimpl.py ${PYSITELIB}/IPython/utils/rlineimpl.pyc ${PYSITELIB}/IPython/utils/rlineimpl.pyo +${PYSITELIB}/IPython/utils/signatures.py ${PYSITELIB}/IPython/utils/signatures.pyc ${PYSITELIB}/IPython/utils/signatures.pyo +${PYSITELIB}/IPython/utils/strdispatch.py ${PYSITELIB}/IPython/utils/strdispatch.pyc ${PYSITELIB}/IPython/utils/strdispatch.pyo +${PYSITELIB}/IPython/utils/submodule.py ${PYSITELIB}/IPython/utils/submodule.pyc ${PYSITELIB}/IPython/utils/submodule.pyo +${PYSITELIB}/IPython/utils/sysinfo.py ${PYSITELIB}/IPython/utils/sysinfo.pyc ${PYSITELIB}/IPython/utils/sysinfo.pyo +${PYSITELIB}/IPython/utils/syspathcontext.py ${PYSITELIB}/IPython/utils/syspathcontext.pyc ${PYSITELIB}/IPython/utils/syspathcontext.pyo +${PYSITELIB}/IPython/utils/tempdir.py ${PYSITELIB}/IPython/utils/tempdir.pyc ${PYSITELIB}/IPython/utils/tempdir.pyo +${PYSITELIB}/IPython/utils/terminal.py ${PYSITELIB}/IPython/utils/terminal.pyc ${PYSITELIB}/IPython/utils/terminal.pyo -${PYSITELIB}/IPython/utils/text.pyc -${PYSITELIB}/IPython/utils/text.pyo -${PYSITELIB}/IPython/utils/timing.pyc -${PYSITELIB}/IPython/utils/timing.pyo -${PYSITELIB}/IPython/utils/tokenize2.pyc -${PYSITELIB}/IPython/utils/tokenize2.pyo -${PYSITELIB}/IPython/utils/traitlets.pyc -${PYSITELIB}/IPython/utils/traitlets.pyo -${PYSITELIB}/IPython/utils/tz.pyc -${PYSITELIB}/IPython/utils/tz.pyo -${PYSITELIB}/IPython/utils/ulinecache.pyc -${PYSITELIB}/IPython/utils/ulinecache.pyo -${PYSITELIB}/IPython/utils/version.pyc -${PYSITELIB}/IPython/utils/version.pyo -${PYSITELIB}/IPython/utils/warn.pyc -${PYSITELIB}/IPython/utils/warn.pyo -${PYSITELIB}/IPython/utils/wildcard.pyc -${PYSITELIB}/IPython/utils/wildcard.pyo -${PYSITELIB}/IPython/utils/zmqrelated.pyc -${PYSITELIB}/IPython/utils/zmqrelated.pyo -${PYSITELIB}/IPython/utils/_process_cli.py -${PYSITELIB}/IPython/utils/_process_common.py -${PYSITELIB}/IPython/utils/_process_posix.py -${PYSITELIB}/IPython/utils/_process_win32.py -${PYSITELIB}/IPython/utils/_process_win32_controller.py -${PYSITELIB}/IPython/utils/_sysinfo.py -${PYSITELIB}/IPython/utils/_tokenize_py2.py -${PYSITELIB}/IPython/utils/_tokenize_py3.py -${PYSITELIB}/IPython/utils/capture.py -${PYSITELIB}/IPython/utils/codeutil.py -${PYSITELIB}/IPython/utils/coloransi.py -${PYSITELIB}/IPython/utils/contexts.py -${PYSITELIB}/IPython/utils/daemonize.py -${PYSITELIB}/IPython/utils/data.py -${PYSITELIB}/IPython/utils/decorators.py -${PYSITELIB}/IPython/utils/dir2.py -${PYSITELIB}/IPython/utils/doctestreload.py -${PYSITELIB}/IPython/utils/encoding.py -${PYSITELIB}/IPython/utils/frame.py -${PYSITELIB}/IPython/utils/generics.py -${PYSITELIB}/IPython/utils/importstring.py -${PYSITELIB}/IPython/utils/io.py -${PYSITELIB}/IPython/utils/ipstruct.py -${PYSITELIB}/IPython/utils/jsonutil.py -${PYSITELIB}/IPython/utils/localinterfaces.py -${PYSITELIB}/IPython/utils/module_paths.py -${PYSITELIB}/IPython/utils/openpy.py -${PYSITELIB}/IPython/utils/path.py -${PYSITELIB}/IPython/utils/pickleshare.py -${PYSITELIB}/IPython/utils/pickleutil.py -${PYSITELIB}/IPython/utils/process.py -${PYSITELIB}/IPython/utils/py3compat.py -${PYSITELIB}/IPython/utils/rlineimpl.py -${PYSITELIB}/IPython/utils/signatures.py -${PYSITELIB}/IPython/utils/strdispatch.py -${PYSITELIB}/IPython/utils/submodule.py -${PYSITELIB}/IPython/utils/sysinfo.py -${PYSITELIB}/IPython/utils/syspathcontext.py -${PYSITELIB}/IPython/utils/tempdir.py -${PYSITELIB}/IPython/utils/terminal.py ${PYSITELIB}/IPython/utils/tests/__init__.py ${PYSITELIB}/IPython/utils/tests/__init__.pyc ${PYSITELIB}/IPython/utils/tests/__init__.pyo +${PYSITELIB}/IPython/utils/tests/test_capture.py ${PYSITELIB}/IPython/utils/tests/test_capture.pyc ${PYSITELIB}/IPython/utils/tests/test_capture.pyo +${PYSITELIB}/IPython/utils/tests/test_decorators.py ${PYSITELIB}/IPython/utils/tests/test_decorators.pyc ${PYSITELIB}/IPython/utils/tests/test_decorators.pyo +${PYSITELIB}/IPython/utils/tests/test_dir2.py ${PYSITELIB}/IPython/utils/tests/test_dir2.pyc ${PYSITELIB}/IPython/utils/tests/test_dir2.pyo +${PYSITELIB}/IPython/utils/tests/test_imports.py ${PYSITELIB}/IPython/utils/tests/test_imports.pyc ${PYSITELIB}/IPython/utils/tests/test_imports.pyo +${PYSITELIB}/IPython/utils/tests/test_importstring.py ${PYSITELIB}/IPython/utils/tests/test_importstring.pyc ${PYSITELIB}/IPython/utils/tests/test_importstring.pyo +${PYSITELIB}/IPython/utils/tests/test_io.py ${PYSITELIB}/IPython/utils/tests/test_io.pyc ${PYSITELIB}/IPython/utils/tests/test_io.pyo +${PYSITELIB}/IPython/utils/tests/test_jsonutil.py ${PYSITELIB}/IPython/utils/tests/test_jsonutil.pyc ${PYSITELIB}/IPython/utils/tests/test_jsonutil.pyo +${PYSITELIB}/IPython/utils/tests/test_localinterfaces.py ${PYSITELIB}/IPython/utils/tests/test_localinterfaces.pyc ${PYSITELIB}/IPython/utils/tests/test_localinterfaces.pyo +${PYSITELIB}/IPython/utils/tests/test_module_paths.py ${PYSITELIB}/IPython/utils/tests/test_module_paths.pyc ${PYSITELIB}/IPython/utils/tests/test_module_paths.pyo +${PYSITELIB}/IPython/utils/tests/test_openpy.py ${PYSITELIB}/IPython/utils/tests/test_openpy.pyc ${PYSITELIB}/IPython/utils/tests/test_openpy.pyo +${PYSITELIB}/IPython/utils/tests/test_path.py ${PYSITELIB}/IPython/utils/tests/test_path.pyc ${PYSITELIB}/IPython/utils/tests/test_path.pyo +${PYSITELIB}/IPython/utils/tests/test_pickleshare.py ${PYSITELIB}/IPython/utils/tests/test_pickleshare.pyc ${PYSITELIB}/IPython/utils/tests/test_pickleshare.pyo +${PYSITELIB}/IPython/utils/tests/test_pickleutil.py +${PYSITELIB}/IPython/utils/tests/test_pickleutil.pyc +${PYSITELIB}/IPython/utils/tests/test_pickleutil.pyo +${PYSITELIB}/IPython/utils/tests/test_process.py ${PYSITELIB}/IPython/utils/tests/test_process.pyc ${PYSITELIB}/IPython/utils/tests/test_process.pyo +${PYSITELIB}/IPython/utils/tests/test_pycolorize.py ${PYSITELIB}/IPython/utils/tests/test_pycolorize.pyc ${PYSITELIB}/IPython/utils/tests/test_pycolorize.pyo +${PYSITELIB}/IPython/utils/tests/test_sysinfo.py +${PYSITELIB}/IPython/utils/tests/test_sysinfo.pyc +${PYSITELIB}/IPython/utils/tests/test_sysinfo.pyo +${PYSITELIB}/IPython/utils/tests/test_tempdir.py ${PYSITELIB}/IPython/utils/tests/test_tempdir.pyc ${PYSITELIB}/IPython/utils/tests/test_tempdir.pyo +${PYSITELIB}/IPython/utils/tests/test_text.py ${PYSITELIB}/IPython/utils/tests/test_text.pyc ${PYSITELIB}/IPython/utils/tests/test_text.pyo +${PYSITELIB}/IPython/utils/tests/test_tokenutil.py +${PYSITELIB}/IPython/utils/tests/test_tokenutil.pyc +${PYSITELIB}/IPython/utils/tests/test_tokenutil.pyo +${PYSITELIB}/IPython/utils/tests/test_traitlets.py ${PYSITELIB}/IPython/utils/tests/test_traitlets.pyc ${PYSITELIB}/IPython/utils/tests/test_traitlets.pyo +${PYSITELIB}/IPython/utils/tests/test_wildcard.py ${PYSITELIB}/IPython/utils/tests/test_wildcard.pyc ${PYSITELIB}/IPython/utils/tests/test_wildcard.pyo -${PYSITELIB}/IPython/utils/tests/test_capture.py -${PYSITELIB}/IPython/utils/tests/test_decorators.py -${PYSITELIB}/IPython/utils/tests/test_dir2.py -${PYSITELIB}/IPython/utils/tests/test_imports.py -${PYSITELIB}/IPython/utils/tests/test_importstring.py -${PYSITELIB}/IPython/utils/tests/test_io.py -${PYSITELIB}/IPython/utils/tests/test_jsonutil.py -${PYSITELIB}/IPython/utils/tests/test_localinterfaces.py -${PYSITELIB}/IPython/utils/tests/test_module_paths.py -${PYSITELIB}/IPython/utils/tests/test_openpy.py -${PYSITELIB}/IPython/utils/tests/test_path.py -${PYSITELIB}/IPython/utils/tests/test_pickleshare.py -${PYSITELIB}/IPython/utils/tests/test_process.py -${PYSITELIB}/IPython/utils/tests/test_pycolorize.py -${PYSITELIB}/IPython/utils/tests/test_tempdir.py -${PYSITELIB}/IPython/utils/tests/test_text.py -${PYSITELIB}/IPython/utils/tests/test_traitlets.py -${PYSITELIB}/IPython/utils/tests/test_wildcard.py ${PYSITELIB}/IPython/utils/text.py +${PYSITELIB}/IPython/utils/text.pyc +${PYSITELIB}/IPython/utils/text.pyo ${PYSITELIB}/IPython/utils/timing.py +${PYSITELIB}/IPython/utils/timing.pyc +${PYSITELIB}/IPython/utils/timing.pyo ${PYSITELIB}/IPython/utils/tokenize2.py +${PYSITELIB}/IPython/utils/tokenize2.pyc +${PYSITELIB}/IPython/utils/tokenize2.pyo +${PYSITELIB}/IPython/utils/tokenutil.py +${PYSITELIB}/IPython/utils/tokenutil.pyc +${PYSITELIB}/IPython/utils/tokenutil.pyo ${PYSITELIB}/IPython/utils/traitlets.py +${PYSITELIB}/IPython/utils/traitlets.pyc +${PYSITELIB}/IPython/utils/traitlets.pyo ${PYSITELIB}/IPython/utils/tz.py +${PYSITELIB}/IPython/utils/tz.pyc +${PYSITELIB}/IPython/utils/tz.pyo ${PYSITELIB}/IPython/utils/ulinecache.py +${PYSITELIB}/IPython/utils/ulinecache.pyc +${PYSITELIB}/IPython/utils/ulinecache.pyo ${PYSITELIB}/IPython/utils/version.py +${PYSITELIB}/IPython/utils/version.pyc +${PYSITELIB}/IPython/utils/version.pyo ${PYSITELIB}/IPython/utils/warn.py +${PYSITELIB}/IPython/utils/warn.pyc +${PYSITELIB}/IPython/utils/warn.pyo ${PYSITELIB}/IPython/utils/wildcard.py +${PYSITELIB}/IPython/utils/wildcard.pyc +${PYSITELIB}/IPython/utils/wildcard.pyo ${PYSITELIB}/IPython/utils/zmqrelated.py +${PYSITELIB}/IPython/utils/zmqrelated.pyc +${PYSITELIB}/IPython/utils/zmqrelated.pyo ${PYSITELIB}/${EGG_FILE} -man/man1/ipcluster.1 -man/man1/ipcontroller.1 -man/man1/ipengine.1 -man/man1/ipython.1 +man/man1/ipcluster${PYVERSSUFFIX}.1 +man/man1/ipcontroller${PYVERSSUFFIX}.1 +man/man1/ipengine${PYVERSSUFFIX}.1 +man/man1/ipython${PYVERSSUFFIX}.1 diff --git a/devel/py-ipython/distinfo b/devel/py-ipython/distinfo index a79e2de7dbd..0ee793b74f9 100644 --- a/devel/py-ipython/distinfo +++ b/devel/py-ipython/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.3 2015/11/03 03:29:09 agc Exp $ +$NetBSD: distinfo,v 1.4 2015/12/15 10:23:03 markd Exp $ -SHA1 (ipython-2.0.0.tar.gz) = d741ca11f19eecaaa0c9879163b9e66041f79813 -RMD160 (ipython-2.0.0.tar.gz) = df0fdad9c45291179a119232db83f6259cbe6b50 -SHA512 (ipython-2.0.0.tar.gz) = d7bbeaa712a4b66f0bff13b4e2a8488f024c0b2c611f2cd2803effb763b6a1c8bc7ce97146995d6d6d7668ffcaa9d946546d5fe6018b38f7ae78e07f53396de6 -Size (ipython-2.0.0.tar.gz) = 11877967 bytes +SHA1 (ipython-3.2.1.tar.gz) = b3556744deddf619dbb8c878ba33672133b12a6c +RMD160 (ipython-3.2.1.tar.gz) = 5b1d991bf2095edb8fdf80e1855b625cc5a1e98a +SHA512 (ipython-3.2.1.tar.gz) = de7723e3b859d21a58a24456c76c8d8ec98c019f290f61269f46270e7647d2b49a98671138fecd75cb6f46384fde7e09618eb5c85c175e0e442c7fae7328d8fe +Size (ipython-3.2.1.tar.gz) = 10884249 bytes SHA1 (patch-setupbase.py) = 8cd647afb3f26f19f5b8d872af7835b73615b324 -- cgit v1.2.3