pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-ipython



Module Name:    pkgsrc
Committed By:   markd
Date:           Sun Apr 23 04:50:52 UTC 2017

Modified Files:
        pkgsrc/devel/py-ipython: Makefile PLIST distinfo

Log Message:
Update ipython to 5.3.0

IPython 4.0
===========

Released August, 2015

IPython 4.0 is the first major release after the Big Split.
IPython no longer contains the notebook, qtconsole, etc. which have moved to
jupyter <https://jupyter.readthedocs.io>.
IPython subprojects, such as IPython.parallel and widgets have moved to their
own repos as well

IPython 5.0
===========

Released July 7, 2016

New terminal interface
----------------------

IPython 5 features a major upgrade to the terminal interface, bringing live
syntax highlighting as you type, proper multiline editing and multiline paste,
and tab completions that don't clutter up your history.

.. image:: ../_images/ptshell_features.png
    :alt: New terminal interface features
    :align: center
    :target: ../_images/ptshell_features.png

These features are provided by the Python library prompt_toolkit,
which replaces ``readline`` throughout our terminal interface.

Relying on this pure-Python, cross platform module also makes it simpler to
install IPython. We have removed dependencies on ``pyreadline`` for Windows and
``gnureadline`` for Mac.

Backwards incompatible changes
------------------------------

- The ``%install_ext`` magic function, deprecated since 4.0, has now been deleted.
  You can distribute and install extensions as packages on PyPI.
- Callbacks registered while an event is being handled will now only be called
  for subsequent events; previously they could be called for the current event.
  Similarly, callbacks removed while handling an event *will* always get that
  event.
- Integration with pydb has been removed since pydb development has been stopped
  since 2012, and pydb is not installable from PyPI.
- The ``autoedit_syntax`` option has apparently been broken for many years.
  It has been removed.

IPython 5.3
===========

Released on January 29th, 2017. Remarkable changes and fixes:

* Fix a bug in ``set_next_input`` leading to a crash of terminal IPython.
* Always wait for editor inputhook for terminal IPython
* Disable ``_ipython_display_`` in terminal
* Update terminal colors to be more visible by default on windows
* Add Ctrl-Z shortcut (suspend) in terminal debugger
* Indent on new line by looking at the text before the cursor
* Update QtEventloop integration to fix some matplotlib integration issues
* Respect completions display style in terminal debugger
* Add a config option ``TerminalInteractiveShell.extra_open_editor_shortcuts``
  to enable extra shortcuts to open the input in an editor. These are :kbd:`v`
  in vi mode, and :kbd:`C-X C-E` in emacs mode
  The :kbd:`F2` shortcut is always enabled.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/py-ipython/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-ipython/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-ipython/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-ipython/Makefile
diff -u pkgsrc/devel/py-ipython/Makefile:1.18 pkgsrc/devel/py-ipython/Makefile:1.19
--- pkgsrc/devel/py-ipython/Makefile:1.18       Tue Jan  3 13:23:02 2017
+++ pkgsrc/devel/py-ipython/Makefile    Sun Apr 23 04:50:51 2017
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.18 2017/01/03 13:23:02 jperkin Exp $
+# $NetBSD: Makefile,v 1.19 2017/04/23 04:50:51 markd Exp $
 
-DISTNAME=      ipython-3.2.1
+DISTNAME=      ipython-5.3.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    devel lang
 MASTER_SITES=  ${MASTER_SITE_PYPI:=i/ipython/}
 
@@ -11,27 +10,31 @@ HOMEPAGE=   http://ipython.org/
 COMMENT=       Interactive computing environment for Python
 LICENSE=       modified-bsd
 
-DEPENDS+=      ${PYPKGPREFIX}-jinja2-[0-9]*:../../textproc/py-jinja2
-DEPENDS+=      ${PYPKGPREFIX}-jsonschema-[0-9]*:../../textproc/py-jsonschema
+.include "../../lang/python/distutils.mk"
+
+.if ${PYPKGPREFIX} == py27
+DEPENDS+=      ${PYPKGPREFIX}-backports.shutil_get_terminal_size-[0-9]*:../../devel/py-backports.shutil_get_terminal_size
+DEPENDS+=      ${PYPKGPREFIX}-pathlib2-[0-9]*:../../devel/py-pathlib2
+.endif
+
+DEPENDS+=      ${PYPKGPREFIX}-decorator-[0-9]*:../../devel/py-decorator
 DEPENDS+=      ${PYPKGPREFIX}-pexpect-[0-9]*:../../devel/py-pexpect
+DEPENDS+=      ${PYPKGPREFIX}-prompt_toolkit>=1.0.4:../../devel/py-prompt_toolkit
+DEPENDS+=      ${PYPKGPREFIX}-setuptools>=18.5:../../devel/py-setuptools
 DEPENDS+=      ${PYPKGPREFIX}-pygments-[0-9]*:../../textproc/py-pygments
-DEPENDS+=      ${PYPKGPREFIX}-readline-[0-9]*:../../devel/py-readline
 DEPENDS+=      ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx
-DEPENDS+=      ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
-DEPENDS+=      ${PYPKGPREFIX}-tornado-[0-9]*:../../www/py-tornado
-DEPENDS+=      ${PYPKGPREFIX}-zmq>=14.0.1:../../net/py-zmq
+DEPENDS+=      ${PYPKGPREFIX}-pickleshare-[0-9]*:../../databases/py-pickleshare
+DEPENDS+=      ${PYPKGPREFIX}-simplegeneric>0.8:../../devel/py-simplegeneric
+DEPENDS+=      ${PYPKGPREFIX}-traitlets>=4.2:../../devel/py-traitlets
 
 USE_LANGUAGES= # none
 
 REPLACE_PYTHON=        */*/*.py */*/*/*.py
 
 post-install:
-       ${MV} ${DESTDIR}${PREFIX}/bin/iptest ${DESTDIR}${PREFIX}/bin/iptest${PYVERSSUFFIX} || ${TRUE}
-       for f in ipcluster ipcontroller ipengine ipython; do \
-               ${MV} ${DESTDIR}${PREFIX}/bin/$$f ${DESTDIR}${PREFIX}/bin/$${f}${PYVERSSUFFIX} || ${TRUE}; \
-               ${MV} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/$${f}.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/$${f}${PYVERSSUFFIX}.1 || ${TRUE}; \
-       done
+       ${MV} ${DESTDIR}${PREFIX}/bin/iptest ${DESTDIR}${PREFIX}/bin/iptest${PYVERSSUFFIX}
+       ${MV} ${DESTDIR}${PREFIX}/bin/ipython ${DESTDIR}${PREFIX}/bin/ipython${PYVERSSUFFIX}
+       ${MV} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/ipython.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/ipython${PYVERSSUFFIX}.1
 
-.include "../../lang/python/distutils.mk"
 .include "../../lang/python/application.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-ipython/PLIST
diff -u pkgsrc/devel/py-ipython/PLIST:1.5 pkgsrc/devel/py-ipython/PLIST:1.6
--- pkgsrc/devel/py-ipython/PLIST:1.5   Tue Dec 15 10:23:03 2015
+++ pkgsrc/devel/py-ipython/PLIST       Sun Apr 23 04:50:51 2017
@@ -1,13 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2015/12/15 10:23:03 markd Exp $
-${PLIST.py2x}bin/ipcluster2
-${PLIST.py3x}bin/ipcluster3
-bin/ipcluster${PYVERSSUFFIX}
-${PLIST.py2x}bin/ipcontroller2
-${PLIST.py3x}bin/ipcontroller3
-bin/ipcontroller${PYVERSSUFFIX}
-${PLIST.py2x}bin/ipengine2
-${PLIST.py3x}bin/ipengine3
-bin/ipengine${PYVERSSUFFIX}
+@comment $NetBSD: PLIST,v 1.6 2017/04/23 04:50:51 markd Exp $
 ${PLIST.py2x}bin/iptest2
 ${PLIST.py3x}bin/iptest3
 bin/iptest${PYVERSSUFFIX}
@@ -20,50 +11,9 @@ ${PYSITELIB}/IPython/__init__.pyo
 ${PYSITELIB}/IPython/__main__.py
 ${PYSITELIB}/IPython/__main__.pyc
 ${PYSITELIB}/IPython/__main__.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/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/math/ipython_config.py
-${PYSITELIB}/IPython/config/profile/math/ipython_config.pyc
-${PYSITELIB}/IPython/config/profile/math/ipython_config.pyo
-${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/sympy/ipython_config.py
-${PYSITELIB}/IPython/config/profile/sympy/ipython_config.pyc
-${PYSITELIB}/IPython/config/profile/sympy/ipython_config.pyo
-${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.py
+${PYSITELIB}/IPython/config.pyc
+${PYSITELIB}/IPython/config.pyo
 ${PYSITELIB}/IPython/consoleapp.py
 ${PYSITELIB}/IPython/consoleapp.pyc
 ${PYSITELIB}/IPython/consoleapp.pyo
@@ -175,9 +125,6 @@ ${PYSITELIB}/IPython/core/magics/code.py
 ${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
@@ -220,6 +167,7 @@ ${PYSITELIB}/IPython/core/payloadpage.py
 ${PYSITELIB}/IPython/core/prefilter.py
 ${PYSITELIB}/IPython/core/prefilter.pyc
 ${PYSITELIB}/IPython/core/prefilter.pyo
+${PYSITELIB}/IPython/core/profile/README_STARTUP
 ${PYSITELIB}/IPython/core/profileapp.py
 ${PYSITELIB}/IPython/core/profileapp.pyc
 ${PYSITELIB}/IPython/core/profileapp.pyo
@@ -249,9 +197,12 @@ ${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/bad_all.py
+${PYSITELIB}/IPython/core/tests/bad_all.pyc
+${PYSITELIB}/IPython/core/tests/bad_all.pyo
+${PYSITELIB}/IPython/core/tests/daft_extension/daft_extension.py
+${PYSITELIB}/IPython/core/tests/daft_extension/daft_extension.pyc
+${PYSITELIB}/IPython/core/tests/daft_extension/daft_extension.pyo
 ${PYSITELIB}/IPython/core/tests/nonascii.py
 ${PYSITELIB}/IPython/core/tests/nonascii.pyc
 ${PYSITELIB}/IPython/core/tests/nonascii.pyo
@@ -294,6 +245,9 @@ ${PYSITELIB}/IPython/core/tests/test_deb
 ${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_displayhook.py
+${PYSITELIB}/IPython/core/tests/test_displayhook.pyc
+${PYSITELIB}/IPython/core/tests/test_displayhook.pyo
 ${PYSITELIB}/IPython/core/tests/test_events.py
 ${PYSITELIB}/IPython/core/tests/test_events.pyc
 ${PYSITELIB}/IPython/core/tests/test_events.pyo
@@ -345,6 +299,9 @@ ${PYSITELIB}/IPython/core/tests/test_oin
 ${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_paths.py
+${PYSITELIB}/IPython/core/tests/test_paths.pyc
+${PYSITELIB}/IPython/core/tests/test_paths.pyo
 ${PYSITELIB}/IPython/core/tests/test_prefilter.py
 ${PYSITELIB}/IPython/core/tests/test_prefilter.pyc
 ${PYSITELIB}/IPython/core/tests/test_prefilter.pyo
@@ -387,9 +344,6 @@ ${PYSITELIB}/IPython/extensions/autorelo
 ${PYSITELIB}/IPython/extensions/cythonmagic.py
 ${PYSITELIB}/IPython/extensions/cythonmagic.pyc
 ${PYSITELIB}/IPython/extensions/cythonmagic.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
@@ -411,21 +365,6 @@ ${PYSITELIB}/IPython/extensions/tests/te
 ${PYSITELIB}/IPython/external/__init__.py
 ${PYSITELIB}/IPython/external/__init__.pyc
 ${PYSITELIB}/IPython/external/__init__.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/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/decorators/__init__.py
 ${PYSITELIB}/IPython/external/decorators/__init__.pyc
 ${PYSITELIB}/IPython/external/decorators/__init__.pyo
@@ -441,726 +380,18 @@ ${PYSITELIB}/IPython/external/decorators
 ${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/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/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/frontend.py
 ${PYSITELIB}/IPython/frontend.pyc
 ${PYSITELIB}/IPython/frontend.pyo
-${PYSITELIB}/IPython/html/__init__.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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/edit/closetag.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/edit/continuelist.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/edit/matchbrackets.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/edit/matchtags.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/edit/trailingspace.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/fold/brace-fold.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/fold/comment-fold.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/fold/foldcode.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/fold/foldgutter.css
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/fold/foldgutter.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/fold/indent-fold.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/fold/markdown-fold.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/fold/xml-fold.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/anyword-hint.js
-${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/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
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/hint/xml-hint.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/lint/coffeescript-lint.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/lint/css-lint.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/lint/javascript-lint.js
-${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/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
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/selection/mark-selection.js
-${PYSITELIB}/IPython/html/static/components/codemirror/addon/tern/tern.css
-${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/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
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/apl/apl.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/asterisk/asterisk.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/clike/clike.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/clojure/clojure.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/cobol/cobol.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/coffeescript/coffeescript.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/commonlisp/commonlisp.js
-${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
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/fortran/fortran.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/gas/gas.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/gfm/gfm.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/gfm/test.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/gherkin/gherkin.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/go/go.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/groovy/groovy.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/haml/haml.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/haml/test.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/haskell/haskell.js
-${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/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
-${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
-${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/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
-${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
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/yaml/yaml.js
-${PYSITELIB}/IPython/html/static/components/codemirror/mode/z80/z80.js
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/3024-day.css
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/3024-night.css
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/ambiance-mobile.css
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/ambiance.css
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/base16-dark.css
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/base16-light.css
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/blackboard.css
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/cobalt.css
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/eclipse.css
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/elegant.css
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/erlang-dark.css
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/lesser-dark.css
-${PYSITELIB}/IPython/html/static/components/codemirror/theme/mbo.css
-${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
-${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/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/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
-${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
-${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
-${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png
-${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
-${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
-${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
-${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png
-${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png
-${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png
-${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png
-${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png
-${PYSITELIB}/IPython/html/static/components/jquery-ui/themes/smoothness/jquery-ui.min.css
-${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/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
-${PYSITELIB}/IPython/html/static/notebook/js/celltoolbarpresets/example.js
-${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/contexthint.js
-${PYSITELIB}/IPython/html/static/notebook/js/kernelselector.js
-${PYSITELIB}/IPython/html/static/notebook/js/keyboardmanager.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/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/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/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_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/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
-${PYSITELIB}/IPython/html/tests/notebook/dualmode_cellinsert.js
-${PYSITELIB}/IPython/html/tests/notebook/dualmode_cellmode.js
-${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/empty_arrow_keys.js
-${PYSITELIB}/IPython/html/tests/notebook/execute_code.js
-${PYSITELIB}/IPython/html/tests/notebook/inject_js.js
-${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/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_float.js
-${PYSITELIB}/IPython/html/tests/widgets/widget_image.js
-${PYSITELIB}/IPython/html/tests/widgets/widget_int.js
-${PYSITELIB}/IPython/html/tests/widgets/widget_selection.js
-${PYSITELIB}/IPython/html/tests/widgets/widget_selectioncontainer.js
-${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/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_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.py
+${PYSITELIB}/IPython/html.pyc
+${PYSITELIB}/IPython/html.pyo
 ${PYSITELIB}/IPython/kernel/__init__.py
 ${PYSITELIB}/IPython/kernel/__init__.pyc
 ${PYSITELIB}/IPython/kernel/__init__.pyo
@@ -1170,15 +401,6 @@ ${PYSITELIB}/IPython/kernel/__main__.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/channels.py
 ${PYSITELIB}/IPython/kernel/channels.pyc
 ${PYSITELIB}/IPython/kernel/channels.pyo
@@ -1191,57 +413,9 @@ ${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/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/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/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/kernelspec.py
 ${PYSITELIB}/IPython/kernel/kernelspec.pyc
 ${PYSITELIB}/IPython/kernel/kernelspec.pyo
@@ -1260,125 +434,12 @@ ${PYSITELIB}/IPython/kernel/managerabc.p
 ${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/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/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/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/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
@@ -1464,769 +525,30 @@ ${PYSITELIB}/IPython/lib/tests/test_impo
 ${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_lexers.py
+${PYSITELIB}/IPython/lib/tests/test_lexers.pyc
+${PYSITELIB}/IPython/lib/tests/test_lexers.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/nbconvert/__init__.py
-${PYSITELIB}/IPython/nbconvert/__init__.pyc
-${PYSITELIB}/IPython/nbconvert/__init__.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/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/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/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/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/serve.py
-${PYSITELIB}/IPython/nbconvert/postprocessors/serve.pyc
-${PYSITELIB}/IPython/nbconvert/postprocessors/serve.pyo
-${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_serve.py
-${PYSITELIB}/IPython/nbconvert/postprocessors/tests/test_serve.pyc
-${PYSITELIB}/IPython/nbconvert/postprocessors/tests/test_serve.pyo
-${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/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/templates/README.md
-${PYSITELIB}/IPython/nbconvert/templates/html/basic.tpl
-${PYSITELIB}/IPython/nbconvert/templates/html/full.tpl
-${PYSITELIB}/IPython/nbconvert/templates/html/mathjax.tpl
-${PYSITELIB}/IPython/nbconvert/templates/html/slides_reveal.tpl
-${PYSITELIB}/IPython/nbconvert/templates/latex/article.tplx
-${PYSITELIB}/IPython/nbconvert/templates/latex/base.tplx
-${PYSITELIB}/IPython/nbconvert/templates/latex/report.tplx
-${PYSITELIB}/IPython/nbconvert/templates/latex/skeleton/display_priority.tplx
-${PYSITELIB}/IPython/nbconvert/templates/latex/skeleton/null.tplx
-${PYSITELIB}/IPython/nbconvert/templates/latex/style_bw_ipython.tplx
-${PYSITELIB}/IPython/nbconvert/templates/latex/style_bw_python.tplx
-${PYSITELIB}/IPython/nbconvert/templates/latex/style_ipython.tplx
-${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.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/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/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/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/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/nbformat/__init__.py
-${PYSITELIB}/IPython/nbformat/__init__.pyc
-${PYSITELIB}/IPython/nbformat/__init__.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/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_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/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/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/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/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/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/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/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/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/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/cluster.py
-${PYSITELIB}/IPython/parallel/cluster.pyc
-${PYSITELIB}/IPython/parallel/cluster.pyo
-${PYSITELIB}/IPython/parallel/controller/__init__.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/engine/__init__.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/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/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/console/__init__.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_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/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_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/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/nbconvert.py
+${PYSITELIB}/IPython/nbconvert.pyc
+${PYSITELIB}/IPython/nbconvert.pyo
+${PYSITELIB}/IPython/nbformat.py
+${PYSITELIB}/IPython/nbformat.pyc
+${PYSITELIB}/IPython/nbformat.pyo
+${PYSITELIB}/IPython/parallel.py
+${PYSITELIB}/IPython/parallel.pyc
+${PYSITELIB}/IPython/parallel.pyo
+${PYSITELIB}/IPython/paths.py
+${PYSITELIB}/IPython/paths.pyc
+${PYSITELIB}/IPython/paths.pyo
+${PYSITELIB}/IPython/qt.py
+${PYSITELIB}/IPython/qt.pyc
+${PYSITELIB}/IPython/qt.pyo
 ${PYSITELIB}/IPython/sphinxext/__init__.py
 ${PYSITELIB}/IPython/sphinxext/__init__.pyc
 ${PYSITELIB}/IPython/sphinxext/__init__.pyo
@@ -2242,36 +564,12 @@ ${PYSITELIB}/IPython/sphinxext/ipython_d
 ${PYSITELIB}/IPython/terminal/__init__.py
 ${PYSITELIB}/IPython/terminal/__init__.pyc
 ${PYSITELIB}/IPython/terminal/__init__.pyo
-${PYSITELIB}/IPython/terminal/console/__init__.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/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/zmqhistory.py
-${PYSITELIB}/IPython/terminal/console/zmqhistory.pyc
-${PYSITELIB}/IPython/terminal/console/zmqhistory.pyo
+${PYSITELIB}/IPython/terminal/console.py
+${PYSITELIB}/IPython/terminal/console.pyc
+${PYSITELIB}/IPython/terminal/console.pyo
+${PYSITELIB}/IPython/terminal/debugger.py
+${PYSITELIB}/IPython/terminal/debugger.pyc
+${PYSITELIB}/IPython/terminal/debugger.pyo
 ${PYSITELIB}/IPython/terminal/embed.py
 ${PYSITELIB}/IPython/terminal/embed.pyc
 ${PYSITELIB}/IPython/terminal/embed.pyo
@@ -2281,6 +579,48 @@ ${PYSITELIB}/IPython/terminal/interactiv
 ${PYSITELIB}/IPython/terminal/ipapp.py
 ${PYSITELIB}/IPython/terminal/ipapp.pyc
 ${PYSITELIB}/IPython/terminal/ipapp.pyo
+${PYSITELIB}/IPython/terminal/magics.py
+${PYSITELIB}/IPython/terminal/magics.pyc
+${PYSITELIB}/IPython/terminal/magics.pyo
+${PYSITELIB}/IPython/terminal/prompts.py
+${PYSITELIB}/IPython/terminal/prompts.pyc
+${PYSITELIB}/IPython/terminal/prompts.pyo
+${PYSITELIB}/IPython/terminal/pt_inputhooks/__init__.py
+${PYSITELIB}/IPython/terminal/pt_inputhooks/__init__.pyc
+${PYSITELIB}/IPython/terminal/pt_inputhooks/__init__.pyo
+${PYSITELIB}/IPython/terminal/pt_inputhooks/glut.py
+${PYSITELIB}/IPython/terminal/pt_inputhooks/glut.pyc
+${PYSITELIB}/IPython/terminal/pt_inputhooks/glut.pyo
+${PYSITELIB}/IPython/terminal/pt_inputhooks/gtk.py
+${PYSITELIB}/IPython/terminal/pt_inputhooks/gtk.pyc
+${PYSITELIB}/IPython/terminal/pt_inputhooks/gtk.pyo
+${PYSITELIB}/IPython/terminal/pt_inputhooks/gtk3.py
+${PYSITELIB}/IPython/terminal/pt_inputhooks/gtk3.pyc
+${PYSITELIB}/IPython/terminal/pt_inputhooks/gtk3.pyo
+${PYSITELIB}/IPython/terminal/pt_inputhooks/osx.py
+${PYSITELIB}/IPython/terminal/pt_inputhooks/osx.pyc
+${PYSITELIB}/IPython/terminal/pt_inputhooks/osx.pyo
+${PYSITELIB}/IPython/terminal/pt_inputhooks/pyglet.py
+${PYSITELIB}/IPython/terminal/pt_inputhooks/pyglet.pyc
+${PYSITELIB}/IPython/terminal/pt_inputhooks/pyglet.pyo
+${PYSITELIB}/IPython/terminal/pt_inputhooks/qt.py
+${PYSITELIB}/IPython/terminal/pt_inputhooks/qt.pyc
+${PYSITELIB}/IPython/terminal/pt_inputhooks/qt.pyo
+${PYSITELIB}/IPython/terminal/pt_inputhooks/tk.py
+${PYSITELIB}/IPython/terminal/pt_inputhooks/tk.pyc
+${PYSITELIB}/IPython/terminal/pt_inputhooks/tk.pyo
+${PYSITELIB}/IPython/terminal/pt_inputhooks/wx.py
+${PYSITELIB}/IPython/terminal/pt_inputhooks/wx.pyc
+${PYSITELIB}/IPython/terminal/pt_inputhooks/wx.pyo
+${PYSITELIB}/IPython/terminal/ptshell.py
+${PYSITELIB}/IPython/terminal/ptshell.pyc
+${PYSITELIB}/IPython/terminal/ptshell.pyo
+${PYSITELIB}/IPython/terminal/ptutils.py
+${PYSITELIB}/IPython/terminal/ptutils.pyc
+${PYSITELIB}/IPython/terminal/ptutils.pyo
+${PYSITELIB}/IPython/terminal/shortcuts.py
+${PYSITELIB}/IPython/terminal/shortcuts.pyc
+${PYSITELIB}/IPython/terminal/shortcuts.pyo
 ${PYSITELIB}/IPython/terminal/tests/__init__.py
 ${PYSITELIB}/IPython/terminal/tests/__init__.pyc
 ${PYSITELIB}/IPython/terminal/tests/__init__.pyo
@@ -2387,6 +727,9 @@ ${PYSITELIB}/IPython/utils/_process_win3
 ${PYSITELIB}/IPython/utils/_process_win32_controller.py
 ${PYSITELIB}/IPython/utils/_process_win32_controller.pyc
 ${PYSITELIB}/IPython/utils/_process_win32_controller.pyo
+${PYSITELIB}/IPython/utils/_signatures.py
+${PYSITELIB}/IPython/utils/_signatures.pyc
+${PYSITELIB}/IPython/utils/_signatures.pyo
 ${PYSITELIB}/IPython/utils/_sysinfo.py
 ${PYSITELIB}/IPython/utils/_sysinfo.pyc
 ${PYSITELIB}/IPython/utils/_sysinfo.pyo
@@ -2399,9 +742,9 @@ ${PYSITELIB}/IPython/utils/_tokenize_py3
 ${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/colorable.py
+${PYSITELIB}/IPython/utils/colorable.pyc
+${PYSITELIB}/IPython/utils/colorable.pyo
 ${PYSITELIB}/IPython/utils/coloransi.py
 ${PYSITELIB}/IPython/utils/coloransi.pyc
 ${PYSITELIB}/IPython/utils/coloransi.pyo
@@ -2420,9 +763,6 @@ ${PYSITELIB}/IPython/utils/decorators.py
 ${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
@@ -2462,9 +802,6 @@ ${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
@@ -2477,15 +814,18 @@ ${PYSITELIB}/IPython/utils/py3compat.pyo
 ${PYSITELIB}/IPython/utils/rlineimpl.py
 ${PYSITELIB}/IPython/utils/rlineimpl.pyc
 ${PYSITELIB}/IPython/utils/rlineimpl.pyo
+${PYSITELIB}/IPython/utils/sentinel.py
+${PYSITELIB}/IPython/utils/sentinel.pyc
+${PYSITELIB}/IPython/utils/sentinel.pyo
+${PYSITELIB}/IPython/utils/shimmodule.py
+${PYSITELIB}/IPython/utils/shimmodule.pyc
+${PYSITELIB}/IPython/utils/shimmodule.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
@@ -2519,12 +859,6 @@ ${PYSITELIB}/IPython/utils/tests/test_im
 ${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
@@ -2534,18 +868,15 @@ ${PYSITELIB}/IPython/utils/tests/test_op
 ${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_shimmodule.py
+${PYSITELIB}/IPython/utils/tests/test_shimmodule.pyc
+${PYSITELIB}/IPython/utils/tests/test_shimmodule.pyo
 ${PYSITELIB}/IPython/utils/tests/test_sysinfo.py
 ${PYSITELIB}/IPython/utils/tests/test_sysinfo.pyc
 ${PYSITELIB}/IPython/utils/tests/test_sysinfo.pyo
@@ -2558,9 +889,6 @@ ${PYSITELIB}/IPython/utils/tests/test_te
 ${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
@@ -2594,11 +922,5 @@ ${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${PYVERSSUFFIX}.1
-man/man1/ipcontroller${PYVERSSUFFIX}.1
-man/man1/ipengine${PYVERSSUFFIX}.1
 man/man1/ipython${PYVERSSUFFIX}.1

Index: pkgsrc/devel/py-ipython/distinfo
diff -u pkgsrc/devel/py-ipython/distinfo:1.4 pkgsrc/devel/py-ipython/distinfo:1.5
--- pkgsrc/devel/py-ipython/distinfo:1.4        Tue Dec 15 10:23:03 2015
+++ pkgsrc/devel/py-ipython/distinfo    Sun Apr 23 04:50:51 2017
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.4 2015/12/15 10:23:03 markd Exp $
+$NetBSD: distinfo,v 1.5 2017/04/23 04:50:51 markd Exp $
 
-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 (ipython-5.3.0.tar.gz) = edd05e1306d046fc06b03f3cef39ffbf704888d3
+RMD160 (ipython-5.3.0.tar.gz) = 15e79f21343b1a9050f5fccdfbd9f0334a5bbf16
+SHA512 (ipython-5.3.0.tar.gz) = 41706d7521cc84f36f5580dc44cd91832a60aa8a7a946d15a9ec9563649b9ae97931b9f135f1fdbaecbcb0b9b925d467edfd6eec7f8c82309872047be77b598d
+Size (ipython-5.3.0.tar.gz) = 4967956 bytes
 SHA1 (patch-setupbase.py) = 8cd647afb3f26f19f5b8d872af7835b73615b324



Home | Main Index | Thread Index | Old Index