Uploaded Test files

This commit is contained in:
Batuhan Berk Başoğlu 2020-11-12 11:05:57 -05:00
parent f584ad9d97
commit 2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions

View file

@ -0,0 +1,40 @@
IPython provides a rich toolkit to help you make the most out of using Python
interactively. Its main components are:
* A powerful interactive Python shell
* A `Jupyter <https://jupyter.org/>`_ kernel to work with Python code in Jupyter
notebooks and other interactive frontends.
The enhanced interactive Python shells have the following main features:
* Comprehensive object introspection.
* Input history, persistent across sessions.
* Caching of output results during a session with automatically generated
references.
* Extensible tab completion, with support by default for completion of python
variables and keywords, filenames and function keywords.
* Extensible system of 'magic' commands for controlling the environment and
performing many tasks related either to IPython or the operating system.
* A rich configuration system with easy switching between different setups
(simpler than changing $PYTHONSTARTUP environment variables every time).
* Session logging and reloading.
* Extensible syntax processing for special purpose situations.
* Access to the system shell with user-extensible alias system.
* Easily embeddable in other Python programs and GUIs.
* Integrated access to the pdb debugger and the Python profiler.
The latest development version is always available from IPython's `GitHub
site <http://github.com/ipython>`_.

View file

@ -0,0 +1 @@
pip

View file

@ -0,0 +1,33 @@
BSD 3-Clause License
- Copyright (c) 2008-Present, IPython Development Team
- Copyright (c) 2001-2007, Fernando Perez <fernando.perez@colorado.edu>
- Copyright (c) 2001, Janko Hauser <jhauser@zscout.de>
- Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View file

@ -0,0 +1,125 @@
Metadata-Version: 2.0
Name: ipython
Version: 7.16.1
Summary: IPython: Productive Interactive Computing
Home-page: https://ipython.org
Author: The IPython Development Team
Author-email: ipython-dev@python.org
License: BSD
Project-URL: Documentation, https://ipython.readthedocs.io/
Project-URL: Funding, https://numfocus.org/
Project-URL: Source, https://github.com/ipython/ipython
Project-URL: Tracker, https://github.com/ipython/ipython/issues
Keywords: Interactive,Interpreter,Shell,Embedding
Platform: Linux
Platform: Mac OSX
Platform: Windows
Classifier: Framework :: IPython
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: System :: Shells
Requires-Python: >=3.6
Provides-Extra: parallel
Provides-Extra: qtconsole
Provides-Extra: doc
Provides-Extra: test
Provides-Extra: terminal
Provides-Extra: kernel
Provides-Extra: nbformat
Provides-Extra: notebook
Provides-Extra: nbconvert
Provides-Extra: all
Requires-Dist: setuptools (>=18.5)
Requires-Dist: jedi (>=0.10)
Requires-Dist: decorator
Requires-Dist: pickleshare
Requires-Dist: traitlets (>=4.2)
Requires-Dist: prompt-toolkit (!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0)
Requires-Dist: pygments
Requires-Dist: backcall
Requires-Dist: pexpect; sys_platform != "win32"
Requires-Dist: appnope; sys_platform == "darwin"
Requires-Dist: colorama; sys_platform == "win32"
Provides-Extra: all
Requires-Dist: Sphinx (>=1.3); extra == 'all'
Requires-Dist: ipykernel; extra == 'all'
Requires-Dist: ipyparallel; extra == 'all'
Requires-Dist: ipywidgets; extra == 'all'
Requires-Dist: nbconvert; extra == 'all'
Requires-Dist: nbformat; extra == 'all'
Requires-Dist: nose (>=0.10.1); extra == 'all'
Requires-Dist: notebook; extra == 'all'
Requires-Dist: numpy (>=1.14); extra == 'all'
Requires-Dist: pygments; extra == 'all'
Requires-Dist: qtconsole; extra == 'all'
Requires-Dist: requests; extra == 'all'
Requires-Dist: testpath; extra == 'all'
Provides-Extra: doc
Requires-Dist: Sphinx (>=1.3); extra == 'doc'
Provides-Extra: kernel
Requires-Dist: ipykernel; extra == 'kernel'
Provides-Extra: nbconvert
Requires-Dist: nbconvert; extra == 'nbconvert'
Provides-Extra: nbformat
Requires-Dist: nbformat; extra == 'nbformat'
Provides-Extra: notebook
Requires-Dist: notebook; extra == 'notebook'
Requires-Dist: ipywidgets; extra == 'notebook'
Provides-Extra: parallel
Requires-Dist: ipyparallel; extra == 'parallel'
Provides-Extra: qtconsole
Requires-Dist: qtconsole; extra == 'qtconsole'
Provides-Extra: terminal
Provides-Extra: test
Requires-Dist: nose (>=0.10.1); extra == 'test'
Requires-Dist: requests; extra == 'test'
Requires-Dist: testpath; extra == 'test'
Requires-Dist: pygments; extra == 'test'
Requires-Dist: nbformat; extra == 'test'
Requires-Dist: ipykernel; extra == 'test'
Requires-Dist: numpy (>=1.14); extra == 'test'
IPython provides a rich toolkit to help you make the most out of using Python
interactively. Its main components are:
* A powerful interactive Python shell
* A `Jupyter <https://jupyter.org/>`_ kernel to work with Python code in Jupyter
notebooks and other interactive frontends.
The enhanced interactive Python shells have the following main features:
* Comprehensive object introspection.
* Input history, persistent across sessions.
* Caching of output results during a session with automatically generated
references.
* Extensible tab completion, with support by default for completion of python
variables and keywords, filenames and function keywords.
* Extensible system of 'magic' commands for controlling the environment and
performing many tasks related either to IPython or the operating system.
* A rich configuration system with easy switching between different setups
(simpler than changing $PYTHONSTARTUP environment variables every time).
* Session logging and reloading.
* Extensible syntax processing for special purpose situations.
* Access to the system shell with user-extensible alias system.
* Easily embeddable in other Python programs and GUIs.
* Integrated access to the pdb debugger and the Python profiler.
The latest development version is always available from IPython's `GitHub
site <http://github.com/ipython>`_.

View file

@ -0,0 +1,630 @@
../../Scripts/iptest.exe,sha256=GxpEGFFQBmUSWLJWGStFrfx9EQMhoWAU-qUPhJ6kJjE,97247
../../Scripts/iptest3.exe,sha256=GxpEGFFQBmUSWLJWGStFrfx9EQMhoWAU-qUPhJ6kJjE,97247
../../Scripts/ipython.exe,sha256=9KBW21tfIZND649A10gBQQ4QtlhlP0wSXmkNJdJmJi8,97240
../../Scripts/ipython3.exe,sha256=9KBW21tfIZND649A10gBQQ4QtlhlP0wSXmkNJdJmJi8,97240
../../share/man/man1/ipython.1.gz,sha256=ytj4xaQjvrXq9YVcC0VmwjyRD4HDwMFNE3kKMB3A2tY,1039
IPython/__init__.py,sha256=vciKUm-9XAGKaKlH-uEzLJA2GlCRhjoDM59Ih9nEzZw,5818
IPython/__main__.py,sha256=hYwNY5SSIZN3D1P1UJV-N78biipfu4DCLLLzQvnpHMg,464
IPython/__pycache__/__init__.cpython-36.pyc,,
IPython/__pycache__/__main__.cpython-36.pyc,,
IPython/__pycache__/config.cpython-36.pyc,,
IPython/__pycache__/conftest.cpython-36.pyc,,
IPython/__pycache__/consoleapp.cpython-36.pyc,,
IPython/__pycache__/display.cpython-36.pyc,,
IPython/__pycache__/frontend.cpython-36.pyc,,
IPython/__pycache__/html.cpython-36.pyc,,
IPython/__pycache__/nbconvert.cpython-36.pyc,,
IPython/__pycache__/nbformat.cpython-36.pyc,,
IPython/__pycache__/parallel.cpython-36.pyc,,
IPython/__pycache__/paths.cpython-36.pyc,,
IPython/__pycache__/qt.cpython-36.pyc,,
IPython/config.py,sha256=0HuY_gYXvIcuSeDR3IF5DgFeIVZmKVtKdc031jubZdo,642
IPython/conftest.py,sha256=MJbWNJdC6xDlI0c4ly8sg_K2BAYoKogvSKmGWV5tU6I,2040
IPython/consoleapp.py,sha256=JykFsZuW_qOIARJHknArAzc9wyC1HGUD2HvmVhzPc_0,415
IPython/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
IPython/core/__pycache__/__init__.cpython-36.pyc,,
IPython/core/__pycache__/alias.cpython-36.pyc,,
IPython/core/__pycache__/application.cpython-36.pyc,,
IPython/core/__pycache__/async_helpers.cpython-36.pyc,,
IPython/core/__pycache__/autocall.cpython-36.pyc,,
IPython/core/__pycache__/builtin_trap.cpython-36.pyc,,
IPython/core/__pycache__/compilerop.cpython-36.pyc,,
IPython/core/__pycache__/completer.cpython-36.pyc,,
IPython/core/__pycache__/completerlib.cpython-36.pyc,,
IPython/core/__pycache__/crashhandler.cpython-36.pyc,,
IPython/core/__pycache__/debugger.cpython-36.pyc,,
IPython/core/__pycache__/display.cpython-36.pyc,,
IPython/core/__pycache__/display_trap.cpython-36.pyc,,
IPython/core/__pycache__/displayhook.cpython-36.pyc,,
IPython/core/__pycache__/displaypub.cpython-36.pyc,,
IPython/core/__pycache__/error.cpython-36.pyc,,
IPython/core/__pycache__/events.cpython-36.pyc,,
IPython/core/__pycache__/excolors.cpython-36.pyc,,
IPython/core/__pycache__/extensions.cpython-36.pyc,,
IPython/core/__pycache__/formatters.cpython-36.pyc,,
IPython/core/__pycache__/getipython.cpython-36.pyc,,
IPython/core/__pycache__/history.cpython-36.pyc,,
IPython/core/__pycache__/historyapp.cpython-36.pyc,,
IPython/core/__pycache__/hooks.cpython-36.pyc,,
IPython/core/__pycache__/inputsplitter.cpython-36.pyc,,
IPython/core/__pycache__/inputtransformer.cpython-36.pyc,,
IPython/core/__pycache__/inputtransformer2.cpython-36.pyc,,
IPython/core/__pycache__/interactiveshell.cpython-36.pyc,,
IPython/core/__pycache__/latex_symbols.cpython-36.pyc,,
IPython/core/__pycache__/logger.cpython-36.pyc,,
IPython/core/__pycache__/macro.cpython-36.pyc,,
IPython/core/__pycache__/magic.cpython-36.pyc,,
IPython/core/__pycache__/magic_arguments.cpython-36.pyc,,
IPython/core/__pycache__/oinspect.cpython-36.pyc,,
IPython/core/__pycache__/page.cpython-36.pyc,,
IPython/core/__pycache__/payload.cpython-36.pyc,,
IPython/core/__pycache__/payloadpage.cpython-36.pyc,,
IPython/core/__pycache__/prefilter.cpython-36.pyc,,
IPython/core/__pycache__/profileapp.cpython-36.pyc,,
IPython/core/__pycache__/profiledir.cpython-36.pyc,,
IPython/core/__pycache__/prompts.cpython-36.pyc,,
IPython/core/__pycache__/pylabtools.cpython-36.pyc,,
IPython/core/__pycache__/release.cpython-36.pyc,,
IPython/core/__pycache__/shellapp.cpython-36.pyc,,
IPython/core/__pycache__/splitinput.cpython-36.pyc,,
IPython/core/__pycache__/ultratb.cpython-36.pyc,,
IPython/core/__pycache__/usage.cpython-36.pyc,,
IPython/core/alias.py,sha256=S7q-haVF8diea8Fre7mo2N7IqsjfxTd2zA4fI3rZmkM,10034
IPython/core/application.py,sha256=CXqz59rWjmAITC1qYhHHl-aZUIy1LkVLzmwasHrzQmA,18500
IPython/core/async_helpers.py,sha256=ZvqOLyx1TLAIeongih5zkTHw64JmjQx_ElzxiLA_Qfs,4998
IPython/core/autocall.py,sha256=cOlT7Oqj7Yps7yjUHw7oLTBsvF7NxZpVefCJGLBQNTM,2008
IPython/core/builtin_trap.py,sha256=2kYS2hoQQ0eDFQAJE9XTp_sQrBVyadDFO2rdPXZbv2I,3009
IPython/core/compilerop.py,sha256=hKs-dzSSGtVBprXTVO0Qspz-CzVPKmGa884h5ysmwtw,6238
IPython/core/completer.py,sha256=KvbvwalmVtxCRXaXlmOV1TcVrtHqIBuciarVdVp2QIU,73227
IPython/core/completerlib.py,sha256=PpHuSmWz6iPs_tmDHBLmmwPnv7x4rwGRX9XiUa-dckE,11807
IPython/core/crashhandler.py,sha256=kETqm5hctuxgTHn1ZR2Q9FaStgvlIdWcPH-zQJirhkw,8299
IPython/core/debugger.py,sha256=XkwduT2S3AKhsgE5JfsvRIXrs5jf4uSognYqjsKfQ1M,28459
IPython/core/display.py,sha256=iFYj2MjMJFwP9svYvhQ16KMkcvvRy6k8ASDw0H6YG7c,51728
IPython/core/display_trap.py,sha256=31jM26B3PhNSLJhpyRHuTWscObwVMOlH9PDC2v8HmsU,2098
IPython/core/displayhook.py,sha256=ZQ4W8D-QdTbQeYoJxR0RdVWXkJPx-rFeTqZQOnr4928,12620
IPython/core/displaypub.py,sha256=3lrKOHwv5viV5U9N-FqOkueM1delBKArIgcTsUrZkZY,4932
IPython/core/error.py,sha256=lL5WP3E0sGNWkBTQL0u795wLQJCSrDCf328ft8TfCjk,1734
IPython/core/events.py,sha256=XzOOVK8mjVOKdtQfIwEh-c2v-7eZ2UxBwbNF_Djbksw,5326
IPython/core/excolors.py,sha256=54J1cY9AS9C8yRnfkShCrrRflAHEIP76T-r3RUB8UmI,5689
IPython/core/extensions.py,sha256=PemZfQpNVcH0nQVFGzlKtBS1lGmpoQW2_VDga0_UbzM,5982
IPython/core/formatters.py,sha256=M7BHaILc4BdAO2DBaODW_CXI2tJqsLiBMIqbQrmPaCw,34964
IPython/core/getipython.py,sha256=BoeLWV2b60Jdu3rB3lbkJkwbuNXOpIsyIhpBOoyh2L4,916
IPython/core/history.py,sha256=CAKVflcVN6k4QkZ6aJq1KpygMd0fhmTe75_3ZKmzbBM,32899
IPython/core/historyapp.py,sha256=9Mai4CZRppz9bPAJ7BJYYfxDiQdUKzSWB4c7YU0JXL0,5969
IPython/core/hooks.py,sha256=fFB7YS9qK8pHcrWEqDl5C1S2xsJ855c1jehpetbCKf8,6137
IPython/core/inputsplitter.py,sha256=CjpZAPknPfCtlXJKHyelJiCnCMTwnO99i3vNJ0H5Fy8,28155
IPython/core/inputtransformer.py,sha256=q-KQo_gK505gPqJTMAUkcuis7ipxsvlrT5qXxs37Uck,18292
IPython/core/inputtransformer2.py,sha256=o65j6Xl4P4zkmnBH9i7LKx7TCVHYFM4A9PHsE95Ndts,26527
IPython/core/interactiveshell.py,sha256=9RZAh0UTVBnQhxfaNhkKlMDvOCD0okscAFebHyW5Ro4,150761
IPython/core/latex_symbols.py,sha256=YiIWrYezmqutOkwydHg7VVWyNVjPaL6uqfF_iyGEhbk,31288
IPython/core/logger.py,sha256=5C2oc3-VbWQbSgAgAks1zVd2OhxYryiVwThmtnFJMls,7930
IPython/core/macro.py,sha256=83KmGTzviEMXNLAzfdL-Mwi47zAGmbpFjDSnYPNYpfM,1734
IPython/core/magic.py,sha256=sqxT6_IST_rnH5K6wjvXFyoChjUIwwPbrHfHaPOfWXE,26461
IPython/core/magic_arguments.py,sha256=BI5_lznxvpumUhJbcWbFePt8AzsS0KwIFTcfmrJDcSI,8865
IPython/core/magics/__init__.py,sha256=pkd-UfzjDGp5UHuFKjw192vZnigpTP9ftXzG3oLdiS8,1619
IPython/core/magics/__pycache__/__init__.cpython-36.pyc,,
IPython/core/magics/__pycache__/auto.cpython-36.pyc,,
IPython/core/magics/__pycache__/basic.cpython-36.pyc,,
IPython/core/magics/__pycache__/code.cpython-36.pyc,,
IPython/core/magics/__pycache__/config.cpython-36.pyc,,
IPython/core/magics/__pycache__/display.cpython-36.pyc,,
IPython/core/magics/__pycache__/execution.cpython-36.pyc,,
IPython/core/magics/__pycache__/extension.cpython-36.pyc,,
IPython/core/magics/__pycache__/history.cpython-36.pyc,,
IPython/core/magics/__pycache__/logging.cpython-36.pyc,,
IPython/core/magics/__pycache__/namespace.cpython-36.pyc,,
IPython/core/magics/__pycache__/osm.cpython-36.pyc,,
IPython/core/magics/__pycache__/packaging.cpython-36.pyc,,
IPython/core/magics/__pycache__/pylab.cpython-36.pyc,,
IPython/core/magics/__pycache__/script.cpython-36.pyc,,
IPython/core/magics/auto.py,sha256=TYkb7IF1xy8Ibi3cMUj4nYJaVfAO52UZ2LH-5lAcXnE,4315
IPython/core/magics/basic.py,sha256=DXHizGrxmK9ApTlhI-viPg4EuZdn-QEzBrbuSfj_Lhg,23017
IPython/core/magics/code.py,sha256=ijlMuAsJa4PJz7MSeUwRaWxmv8y2cl3L8FAcs6skTt0,27149
IPython/core/magics/config.py,sha256=4oHXTIeIAx7Dymoahv5H7gMvfy3AwKoAgLVJut5g_Os,6003
IPython/core/magics/display.py,sha256=cHh1PGqKQCARDFT4I_BqfYsXNXVgD1xxR8mC3JOEu50,2748
IPython/core/magics/execution.py,sha256=LD3UrtOIRc8x7cFjHFpAqKgxny4e1KMjMg7aRtfj0Pg,57595
IPython/core/magics/extension.py,sha256=t8lImzLgOuo6S626JHf6NsMgBXMDLlesB1phYG_tOa8,2485
IPython/core/magics/history.py,sha256=FMazxuTwEv4faYLKZhudtCS3TtnYF6jRdGDht5_OPX0,12131
IPython/core/magics/logging.py,sha256=eUWzo8aRqmhmbxsjmJYoGdKpf1PtTvyNxafrrDZJSmg,6859
IPython/core/magics/namespace.py,sha256=EKpFgu5HkTomad8catYGu8Q9sMwSPx4lGeq922n1uGo,24499
IPython/core/magics/osm.py,sha256=yX_BPkcM-r2H600X0yQCoeXfX6Yqn9TE2vliNChbGJE,30489
IPython/core/magics/packaging.py,sha256=0XlGgojMadb79aHhLY-mOH37bj8-lO4LTgtxf60orfc,3775
IPython/core/magics/pylab.py,sha256=C64c4d2qEQJWLC8J6bGva98xtF-WAmIU4AebnDa3JiI,6448
IPython/core/magics/script.py,sha256=IdFMupYV0FZQ2P94BfhnwXWoWwbX-qNslVXqK335sJk,9518
IPython/core/oinspect.py,sha256=8ZUEhBtrwIe9BJ9BE6L9lchEAbxT6PYBTckht1yc9Gc,35183
IPython/core/page.py,sha256=aK6Zh3tRkEo3fHvkNF3_lc7zDlJgbQ89GnUfkFKK2Mc,11636
IPython/core/payload.py,sha256=SOvmxRbZgCI_fq4ZoOeMKsblk8rYsuHumUefk-3TaTI,1758
IPython/core/payloadpage.py,sha256=gL-07cBWKTAaMc9acbgZOvUmB1_m4jfmiGx1yFnBqcw,1432
IPython/core/prefilter.py,sha256=N8sqj-1MuTDoVb8C3tsAH5DMRj-ZflYZZQMsHMsrmrs,25893
IPython/core/profile/README_STARTUP,sha256=Y47GtYQkWy6pdzkqylUNL6eBSZMUIRGwTxXPUF_BBBc,371
IPython/core/profileapp.py,sha256=ANlpgfGlsp0fN6lX2Jo3PHQq0H4qtaX9UzgLMZzeYCs,10635
IPython/core/profiledir.py,sha256=MbPWVmtkG-V78FICt2hceQui8A4YBfeUIFxkGFkXCBo,7948
IPython/core/prompts.py,sha256=3icFefY5NVob6-JeUORH_uRK1h4JTygC3oH1HbN4Q0Q,607
IPython/core/pylabtools.py,sha256=Nh0wd1SbRmQE-3ESV8n7F4-8womjmZD6921orShX0TM,14460
IPython/core/release.py,sha256=9DpnrzMmvHG3hSOssjcOBi8NMdZri4p67ZwT0HHzv6A,4273
IPython/core/shellapp.py,sha256=Y15gAUKnVxGGVX6_vVQtol6IJtHhJa5sUuKBS20q170,17635
IPython/core/splitinput.py,sha256=JRM5bw-xD4DbEfi6k_RxFJxf8gzeSugC6UOuHinH7vk,4787
IPython/core/tests/2x2.jpg,sha256=YF88a1SklCHZeEbuKL9H13TJM8t8myvSqgffxh7LgkY,331
IPython/core/tests/2x2.png,sha256=ZB6RfzGIikj1RojC3sbJNIeiMAjbcfur9IvYVcfi2-I,71
IPython/core/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
IPython/core/tests/__pycache__/__init__.cpython-36.pyc,,
IPython/core/tests/__pycache__/bad_all.cpython-36.pyc,,
IPython/core/tests/__pycache__/nonascii.cpython-36.pyc,,
IPython/core/tests/__pycache__/nonascii2.cpython-36.pyc,,
IPython/core/tests/__pycache__/print_argv.cpython-36.pyc,,
IPython/core/tests/__pycache__/refbug.cpython-36.pyc,,
IPython/core/tests/__pycache__/simpleerr.cpython-36.pyc,,
IPython/core/tests/__pycache__/tclass.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_alias.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_application.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_async_helpers.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_autocall.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_compilerop.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_completer.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_completerlib.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_debugger.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_display.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_displayhook.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_events.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_extension.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_formatters.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_handlers.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_history.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_hooks.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_imports.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_inputsplitter.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_inputtransformer.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_inputtransformer2.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_inputtransformer2_line.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_interactiveshell.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_iplib.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_logger.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_magic.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_magic_arguments.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_magic_terminal.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_oinspect.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_page.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_paths.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_prefilter.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_profile.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_prompts.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_pylabtools.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_run.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_shellapp.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_splitinput.cpython-36.pyc,,
IPython/core/tests/__pycache__/test_ultratb.cpython-36.pyc,,
IPython/core/tests/bad_all.py,sha256=GARnHj1buvbHLjoKLiEy7XTqvo91Xb7ckOrNqh8YsnY,206
IPython/core/tests/daft_extension/__pycache__/daft_extension.cpython-36.pyc,,
IPython/core/tests/daft_extension/daft_extension.py,sha256=P1-QHT4a71h0vbRRPHItoFSTLySzH03tjXvBuEHdJFc,285
IPython/core/tests/nonascii.py,sha256=xq_nEFXTB5twXO4Th9snKfceITMOUbm_LFJmfKRWrlo,135
IPython/core/tests/nonascii2.py,sha256=D81kLhC1wGgYv9XjY89FKZSyKRz_rTAsKY9dOZ507cs,155
IPython/core/tests/print_argv.py,sha256=gLlulK9hs-YwPvMAUCHzQ-BegTJKqOGMDpO2UMKmWwI,31
IPython/core/tests/refbug.py,sha256=A9Usb4msz_SlT4MMjDoySvoJp-02ucc1mZ12IfmLKqw,1494
IPython/core/tests/simpleerr.py,sha256=lR9umlaAHWgaYa_Sti1qBeIiOCg6JZ_TCYPibafU2H0,584
IPython/core/tests/tclass.py,sha256=SqfWzMaQVWHQFPn7_DFI04yvATZcaxJlXAwf9aSoNE8,921
IPython/core/tests/test_alias.py,sha256=WGiAvPHIb4yES6FjzdVh3OhOfFRIx4ehTkdzbZ2RyFI,2054
IPython/core/tests/test_application.py,sha256=mErFcPx_bcRGK97-14uyoNdPMsUY2k3rnHPAT1rivpo,2264
IPython/core/tests/test_async_helpers.py,sha256=L9Jdh1MDNJ-fY76MuB3KR1JDNRj43yFlwhRInYlFgfw,8892
IPython/core/tests/test_autocall.py,sha256=ZWAkpwn256aOEse_IptWMew_Ju3E5UmcF7-Gvz1JvIs,1424
IPython/core/tests/test_compilerop.py,sha256=w5WnyQh1G8Xfk01Xh9S-ao9Q_J9-1ySVREBnXJmdI6Q,2309
IPython/core/tests/test_completer.py,sha256=US7ivJGINyStCtwaV6JTQziPO_Un853Zs_PZKuQQfdU,40097
IPython/core/tests/test_completerlib.py,sha256=WYRlFB4qdwY4EAX8tPO6wsxITgBVwXletHR3kUdczZ4,5935
IPython/core/tests/test_debugger.py,sha256=7fguk-3CjeTHTZiqDV6p0XllXgD4m2GoVNYuXSqNug4,8284
IPython/core/tests/test_display.py,sha256=yzPP8ATiam9zflpClFF5_vzRcowrE7epe-P8LpWDZs0,15120
IPython/core/tests/test_displayhook.py,sha256=H91rERKImgUp-8i_RXf6bEYE5eM2yynIWd20XNXcHcY,3591
IPython/core/tests/test_events.py,sha256=M_jabi9AvdBtiiis0JWuRdY1ZTOb1tSnxVfgjpNVBVw,2822
IPython/core/tests/test_extension.py,sha256=x4EDV3swwQMjMNv-i5f-vIF_qg6_jA5dCf4dRJ18BG4,3025
IPython/core/tests/test_formatters.py,sha256=gldu48aStMfY4x3xcDAFcqfVattCFmgJ-J4SWiu7reo,15356
IPython/core/tests/test_handlers.py,sha256=hrp42wW06fVseMNJC4zMBARPNuNRPEj4ruGpKIGtQFA,3180
IPython/core/tests/test_history.py,sha256=5lIlcFdmwdaRGUzCSHs4YE-YiKKsZe4vCuO0leFjZNs,8698
IPython/core/tests/test_hooks.py,sha256=PSkayNLhNt84mMZbEEPencZboh142Hl70GuxoxQrMiE,2452
IPython/core/tests/test_imports.py,sha256=lR-_hRQC-AIe750c4k3AmCbN3spE-KaZevP2Cx8mzNY,1153
IPython/core/tests/test_inputsplitter.py,sha256=MP4M0wJadZlbKVUhvRSJ-OAyldDOYzt9t6rwN3-4-vU,23149
IPython/core/tests/test_inputtransformer.py,sha256=YdxVHAndUADHYR0zPwkOy29RNmt1D2UelAVibgXbFH4,16851
IPython/core/tests/test_inputtransformer2.py,sha256=2rCnPJ7CDqK_EODYERCDpsYaDKVi1s1D9H10baZDedU,8732
IPython/core/tests/test_inputtransformer2_line.py,sha256=FpGfcbWrxMq7Wo9fjmof_zAe54YLAqCIGh3fLnRnwXE,2438
IPython/core/tests/test_interactiveshell.py,sha256=OqnXt5zADtQwj98pRjuwdgpwL0yVP5cWaMu4_Pmceoo,34697
IPython/core/tests/test_iplib.py,sha256=LHAjWGUfqNmMmNKGF6A5ueB51U73pYJSyni1f73hak4,6107
IPython/core/tests/test_logger.py,sha256=unNHQ0jDUG8JFnA8438gHD15D7gbcPoaZhmVY5-ikAQ,896
IPython/core/tests/test_magic.py,sha256=w16t-UAhsWytpWs29-bwwjBrWWlMFEobhA1H2kdGrnA,36400
IPython/core/tests/test_magic_arguments.py,sha256=JjPipcggYPBnC82NpQLE7YlL9XW5n8hpQc_2jFU04wc,4609
IPython/core/tests/test_magic_terminal.py,sha256=iTOoidM21FjIraxOw8qceuv-eOQ_rbR1aUqcsMZUFwo,5631
IPython/core/tests/test_oinspect.py,sha256=Qy05730_nXxlwQXc8Lwexxb-lHy-kQAWI6d-52SKrMs,12874
IPython/core/tests/test_page.py,sha256=dA1r_xWG90NNDvtHpr11JxNUCc_E7QoIEgoUmMLvrdc,772
IPython/core/tests/test_paths.py,sha256=Y02RajInRC6JcQCm4iUIRqOUaCxbg0-zsUQLeCyjSaQ,7408
IPython/core/tests/test_prefilter.py,sha256=-LsXYWWG1HutvHjrRLqDL_CXVTid2IfLMVR2cMgMB3s,4290
IPython/core/tests/test_profile.py,sha256=LfL8jUgdDjeV_6pky-Efh0ZcxUJVJEPppaHt97vfzMY,5315
IPython/core/tests/test_prompts.py,sha256=jbga48K0Fg92Fx92k9JuKz5o74yhhoKP2dzrMKZ8Gy8,845
IPython/core/tests/test_pylabtools.py,sha256=IwU-FjNqO3JzVa_8tbJ5dZC2iEMgG3QfdRRp-NrSvYU,7728
IPython/core/tests/test_run.py,sha256=bHURC5UQxuswTh52QgqkhjgGltxSk9okPougPLRgctA,19315
IPython/core/tests/test_shellapp.py,sha256=RNzxMUeaBXlVpPwIMbiVDTMeZy3S6W8uiin-AZs-dkk,2292
IPython/core/tests/test_splitinput.py,sha256=ScQh6BZhXr8Gefg-VgaZHEa1a0DxlOZVhyviBVdlq_E,1267
IPython/core/tests/test_ultratb.py,sha256=fmkZXkkJfYErMlYnSppmPboc6Ug25ao8Z5CPja7sHrE,13550
IPython/core/ultratb.py,sha256=coTegkD2fbiKWwVFgQX4__U3OZ-dHt8B7L9REqAnP_Y,61276
IPython/core/usage.py,sha256=U00m5DZTwnVTeB1o1FvO1v5EUTGM-K31aGZye9ApAR8,13542
IPython/display.py,sha256=WWrylXrjp_tcnCV7_ofFkvUJeSTFmPvcGHp2YjjgRJc,638
IPython/extensions/__init__.py,sha256=V4vSllFd18CVUvDTbXLYqfwTFmPXUiQZGCs5LX2IliE,78
IPython/extensions/__pycache__/__init__.cpython-36.pyc,,
IPython/extensions/__pycache__/autoreload.cpython-36.pyc,,
IPython/extensions/__pycache__/cythonmagic.cpython-36.pyc,,
IPython/extensions/__pycache__/rmagic.cpython-36.pyc,,
IPython/extensions/__pycache__/storemagic.cpython-36.pyc,,
IPython/extensions/__pycache__/sympyprinting.cpython-36.pyc,,
IPython/extensions/autoreload.py,sha256=89Ad0G6CnsBqMyIscAArgsj2ghZHR_OwaY7JezTJnyQ,17596
IPython/extensions/cythonmagic.py,sha256=ejUOCHfe-rPvpFjydn5XKIi1KR0e2cuT8FmPP49UovE,701
IPython/extensions/rmagic.py,sha256=OWufuTd9ZH1wiFsBUmCSpB-57NWwDyYKyoExK7rswjg,455
IPython/extensions/storemagic.py,sha256=Th3z_sK-Ovyu5YmTW17aJqSpUKd4O-no9VyARAo7rwI,7976
IPython/extensions/sympyprinting.py,sha256=MgOEJxm1_dq1s-EgHmwJq6h5coPxrro5KgVOPnH2JHE,1075
IPython/extensions/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
IPython/extensions/tests/__pycache__/__init__.cpython-36.pyc,,
IPython/extensions/tests/__pycache__/test_autoreload.cpython-36.pyc,,
IPython/extensions/tests/__pycache__/test_storemagic.cpython-36.pyc,,
IPython/extensions/tests/test_autoreload.py,sha256=JsyoYDyUdKJJ2g9dr96dBLZvFBzoSZJ0uCIQczHgCck,14037
IPython/extensions/tests/test_storemagic.py,sha256=P2aiSxRUm9sxJQo47jRe2jD6p25GhULL5bGpnz-sw9o,2139
IPython/external/__init__.py,sha256=_yj44pRNlv_qmC75qNNGcpSYuFQNYbXVjg4ct1ksRyQ,90
IPython/external/__pycache__/__init__.cpython-36.pyc,,
IPython/external/__pycache__/mathjax.cpython-36.pyc,,
IPython/external/__pycache__/qt_for_kernel.cpython-36.pyc,,
IPython/external/__pycache__/qt_loaders.cpython-36.pyc,,
IPython/external/decorators/__init__.py,sha256=FJIqyNIN_54bH_iYr5vz_l4HAO0VjmSIRO7-ZESGQG8,235
IPython/external/decorators/__pycache__/__init__.cpython-36.pyc,,
IPython/external/decorators/__pycache__/_decorators.cpython-36.pyc,,
IPython/external/decorators/__pycache__/_numpy_testing_noseclasses.cpython-36.pyc,,
IPython/external/decorators/_decorators.py,sha256=3UeRo4NRIkrUkwCxfm7ejmvFgDiIL6J0Z-rTG_qgkcI,4561
IPython/external/decorators/_numpy_testing_noseclasses.py,sha256=reMU2uUBgO05UDZyYeVAKrD8rgr90_f372XSrHhWdUo,1482
IPython/external/mathjax.py,sha256=mRPXlUCzevB5UNOt9ZmagOgqFcZ3_mox11SyjG4bmhM,308
IPython/external/qt_for_kernel.py,sha256=EHm81TIS0t_fiyCFrlYc8NfDmkybz5mCX_0DiXXIBsk,3192
IPython/external/qt_loaders.py,sha256=LveDhGS5bwDIjxaVSZdgC1Qoxedl8UCmUYD55oAPxTY,9550
IPython/frontend.py,sha256=eiXPD2wQUwqvUOfw0u31by4I0dFW1dTsBfgsoXQcz0g,1123
IPython/html.py,sha256=Yq0t-ATYyu1igxKRbqUZeRjfAt9Cdx0OfBY9TaPRIxY,839
IPython/kernel/__init__.py,sha256=6IyXpYeQr4aRHY71NJ9FEQcOX-K6-mb_5sgGhWsodRc,1185
IPython/kernel/__main__.py,sha256=g0QxcKzDBghAZZCtHwNuN8-M8CZ-Fsm4GEd3NcHYAE0,100
IPython/kernel/__pycache__/__init__.cpython-36.pyc,,
IPython/kernel/__pycache__/__main__.cpython-36.pyc,,
IPython/kernel/__pycache__/adapter.cpython-36.pyc,,
IPython/kernel/__pycache__/channels.cpython-36.pyc,,
IPython/kernel/__pycache__/channelsabc.cpython-36.pyc,,
IPython/kernel/__pycache__/client.cpython-36.pyc,,
IPython/kernel/__pycache__/clientabc.cpython-36.pyc,,
IPython/kernel/__pycache__/connect.cpython-36.pyc,,
IPython/kernel/__pycache__/kernelspec.cpython-36.pyc,,
IPython/kernel/__pycache__/kernelspecapp.cpython-36.pyc,,
IPython/kernel/__pycache__/launcher.cpython-36.pyc,,
IPython/kernel/__pycache__/manager.cpython-36.pyc,,
IPython/kernel/__pycache__/managerabc.cpython-36.pyc,,
IPython/kernel/__pycache__/multikernelmanager.cpython-36.pyc,,
IPython/kernel/__pycache__/restarter.cpython-36.pyc,,
IPython/kernel/__pycache__/threaded.cpython-36.pyc,,
IPython/kernel/adapter.py,sha256=3dCsuiP9lr1Lq2YfvDrRgNm0GOjBjt0LUMrrU8APEM8,37
IPython/kernel/channels.py,sha256=M53ZLUxwkafaVM1bszEA941orkQQw1hGS_N5t3piDW4,38
IPython/kernel/channelsabc.py,sha256=NtDhImTF4XrX2Mtg4QHviVd2VDMqHrSBXVZuxJQUe6s,41
IPython/kernel/client.py,sha256=RrRf2zQ-CP4ae8Gru8lWStNAdlmXj-F0_7t24dP8kt8,36
IPython/kernel/clientabc.py,sha256=6ooLh9KR2yaDJA8zYBtBeYD8RBbW9Qm5vVazgriSU20,39
IPython/kernel/connect.py,sha256=kcN4pqwkOP3F7DVxwcvgWk2qyg3q6CH8TI9JuHeZ1Uc,69
IPython/kernel/kernelspec.py,sha256=3ObCeW9q6bHLJFNrFjaIxKjp3nNF2F7e6nH5FU2QYB0,40
IPython/kernel/kernelspecapp.py,sha256=N1rGTvp__V0hh2E5EtbM3O8fHsxeT-3vlItbzIP8_eU,43
IPython/kernel/launcher.py,sha256=dY7kU06LyzOuYesk7iG8-E-OK1oDai-VuidBQbSwjZg,38
IPython/kernel/manager.py,sha256=YxuoOj-ZC942cxazsLp6ADn0AGmmUwqk1mtPRbQq_DM,37
IPython/kernel/managerabc.py,sha256=227OmHeFTydyCFRwXeKTrvLuhGGwG859JBAH2LPZrow,40
IPython/kernel/multikernelmanager.py,sha256=6juQjBFsnQ2VPXjTkdi2KBpzrsyL-eT-cSGKPY_TIEY,48
IPython/kernel/restarter.py,sha256=AmwGbO_cZSaHJPw7K9yzgfkYdUma92ZNAn9a6QffmBA,39
IPython/kernel/threaded.py,sha256=1dYwDvTjQYdWgUisF_PY-ORkWMsSCkcsZu2sf4D5C8s,38
IPython/lib/__init__.py,sha256=OUVV-tTYPyqcEuZIiq8yu1KKRCW3dR8Xejff-bkp4VI,785
IPython/lib/__pycache__/__init__.cpython-36.pyc,,
IPython/lib/__pycache__/backgroundjobs.cpython-36.pyc,,
IPython/lib/__pycache__/clipboard.cpython-36.pyc,,
IPython/lib/__pycache__/deepreload.cpython-36.pyc,,
IPython/lib/__pycache__/demo.cpython-36.pyc,,
IPython/lib/__pycache__/display.cpython-36.pyc,,
IPython/lib/__pycache__/editorhooks.cpython-36.pyc,,
IPython/lib/__pycache__/guisupport.cpython-36.pyc,,
IPython/lib/__pycache__/inputhook.cpython-36.pyc,,
IPython/lib/__pycache__/inputhookglut.cpython-36.pyc,,
IPython/lib/__pycache__/inputhookgtk.cpython-36.pyc,,
IPython/lib/__pycache__/inputhookgtk3.cpython-36.pyc,,
IPython/lib/__pycache__/inputhookpyglet.cpython-36.pyc,,
IPython/lib/__pycache__/inputhookqt4.cpython-36.pyc,,
IPython/lib/__pycache__/inputhookwx.cpython-36.pyc,,
IPython/lib/__pycache__/kernel.cpython-36.pyc,,
IPython/lib/__pycache__/latextools.cpython-36.pyc,,
IPython/lib/__pycache__/lexers.cpython-36.pyc,,
IPython/lib/__pycache__/pretty.cpython-36.pyc,,
IPython/lib/__pycache__/security.cpython-36.pyc,,
IPython/lib/backgroundjobs.py,sha256=IMkSj3eUGhFyIkMVXEHt9udPoSvKIviPJN_bIRGGmJ8,17747
IPython/lib/clipboard.py,sha256=DYvE84V-cbQ2mFRMolgKWmWXBofmHGl2wtSZ-kVm7J8,2118
IPython/lib/deepreload.py,sha256=ZSVl5CLRgi6AuYSstk5p4k4LzBrcNTUlOXF_zZCtEsc,10724
IPython/lib/demo.py,sha256=rzaTNkr7MdQtomHk0LgBzaHKikwPV-UJsBPsbI9fPpY,24460
IPython/lib/display.py,sha256=YDrefOM-ZPQjkkp7mjtDNMGP3ZJlOLmirxIAlJjpUrU,24175
IPython/lib/editorhooks.py,sha256=YIgoOMKMUuKAMzKBnfJPWLwaPS2xGGmwCIqTOdiZMD0,3995
IPython/lib/guisupport.py,sha256=ZnJMFxV-5Qe0Ai1QCuxXwk8i9e0FbFL2hoPt5P7CVYQ,6305
IPython/lib/inputhook.py,sha256=1qaPzZNfEB55je51vctmnhWEZ4CX8ru32ucZHNM1c4Q,23594
IPython/lib/inputhookglut.py,sha256=tvx1gDgYtnqcrLKmY6scfJfAXYnuPXO1Ak00nLLbBAg,6066
IPython/lib/inputhookgtk.py,sha256=1HZSJx1pDuO2zISCH7OdhiuUs6B1ORbL_6lbwdusXYo,1020
IPython/lib/inputhookgtk3.py,sha256=eXZ4N0wXU-razEs4c9rosHYgu0EWrP9xFZIbiLd3NYY,1038
IPython/lib/inputhookpyglet.py,sha256=y--OU3aXWG46wXIVmKua66ZRVinNO00BS877AKW8NB4,3667
IPython/lib/inputhookqt4.py,sha256=ko43EpvfbdGURlHxz_APrt3NDufnfZDI9dwurEHsk0U,6801
IPython/lib/inputhookwx.py,sha256=1-3m6aY_7lptG26FQBggZEaqU5_8VBuSCqGvR2SjW6E,6064
IPython/lib/kernel.py,sha256=hRZjXforDjnTiSKCPtcf5B2WZxfkHpK-F42jW8A75MM,297
IPython/lib/latextools.py,sha256=xsVdUL-lBfFsgeh-bbJv83cqlO1TL0-qWENDEY_lN1A,7199
IPython/lib/lexers.py,sha256=vQXSvjN_Ni3aqIvzodgnl-ZC0A0DCE4ezAW2GE2Nzxs,20451
IPython/lib/pretty.py,sha256=vdDPlgecGT_nSzp9rSWH3OFRr8QUW6CwOEg0s-QOrqE,28407
IPython/lib/security.py,sha256=y5wBv-VffhlFMrVlbmqrLIBh21T69LgVVI6SvpgY3IE,3297
IPython/lib/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
IPython/lib/tests/__pycache__/__init__.cpython-36.pyc,,
IPython/lib/tests/__pycache__/test_backgroundjobs.cpython-36.pyc,,
IPython/lib/tests/__pycache__/test_clipboard.cpython-36.pyc,,
IPython/lib/tests/__pycache__/test_deepreload.cpython-36.pyc,,
IPython/lib/tests/__pycache__/test_display.cpython-36.pyc,,
IPython/lib/tests/__pycache__/test_editorhooks.cpython-36.pyc,,
IPython/lib/tests/__pycache__/test_imports.cpython-36.pyc,,
IPython/lib/tests/__pycache__/test_latextools.cpython-36.pyc,,
IPython/lib/tests/__pycache__/test_lexers.cpython-36.pyc,,
IPython/lib/tests/__pycache__/test_pretty.cpython-36.pyc,,
IPython/lib/tests/__pycache__/test_security.cpython-36.pyc,,
IPython/lib/tests/test.wav,sha256=y6O86Ch8OfzBfXicO8yG31DyYifGpYMPJgn-NTj1OS4,44144
IPython/lib/tests/test_backgroundjobs.py,sha256=0ZFXkTGS_bLRq6oKUNsYmZZ9yvoNnNWkde-IidYE14A,2837
IPython/lib/tests/test_clipboard.py,sha256=AnLmoitCr_nvhOBFgePIsNkyj8CDuzV36l2aKvd55tc,658
IPython/lib/tests/test_deepreload.py,sha256=o7SAGHWrT8rmcRp8iR1-LE7YJNhv9RaDfCn5z_kzr7A,1132
IPython/lib/tests/test_display.py,sha256=nGOaMfUiZMnHA_5v0hOEv2X2loeK_FRCEgj99_X84Eo,9461
IPython/lib/tests/test_editorhooks.py,sha256=wZAfE4f-3-TtdhHmQY8o7lMVj3Yghj5mskBYwp51SaM,941
IPython/lib/tests/test_imports.py,sha256=OOY3QsfXDfblB1_gnJHEux5PwzrQgu0ll3iw6dvMbP0,270
IPython/lib/tests/test_latextools.py,sha256=x_FBbA1mokLPxcWByXFHtusVXzXDqKBHVCXz5FiAQNQ,5977
IPython/lib/tests/test_lexers.py,sha256=GjpR161XOY4pMTYvhMR_oeTzhfT16s8M5F-UpXmF5CM,5590
IPython/lib/tests/test_pretty.py,sha256=GzjE_je183gx6VUdKTnkYRsPaxIRlE0PWYvNtqJPmo0,13385
IPython/lib/tests/test_security.py,sha256=bgrKi0vfjXc1WgUET27_tDfS-ptvzeEei4Z0zIULLb0,834
IPython/nbconvert.py,sha256=ZuWoo4sBKt_fSdHU3cRY4GFfF8hni9UEnO3E4glXsQ0,651
IPython/nbformat.py,sha256=cQxowUI0x1pzd0EC7_BOzCrLpPTWKPi7mICJW1vSfMc,645
IPython/parallel.py,sha256=CMItIklVsosQFMjyKz8c-OqyKauN9YZb1mERp03G-pE,652
IPython/paths.py,sha256=hdKl7cmxH0EpnbqorIQIar1ON40eefUFHmCHaXxXixg,4434
IPython/qt.py,sha256=0YxedDtNiFiP6dATyqgw6e40kd7PvxTW1cgRzv9Vki8,762
IPython/sphinxext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
IPython/sphinxext/__pycache__/__init__.cpython-36.pyc,,
IPython/sphinxext/__pycache__/custom_doctests.cpython-36.pyc,,
IPython/sphinxext/__pycache__/ipython_console_highlighting.cpython-36.pyc,,
IPython/sphinxext/__pycache__/ipython_directive.cpython-36.pyc,,
IPython/sphinxext/custom_doctests.py,sha256=DLXkhJal_RfqY7Rd0BoL8sRC90xxsvohqs4v1P-7H78,4603
IPython/sphinxext/ipython_console_highlighting.py,sha256=D60MJnG-Dsv4B_Byd9FmA3ow9PJBx2Q1B2BWMQB9XYg,970
IPython/sphinxext/ipython_directive.py,sha256=muKisv8B3b1u4Pkv6A03vTU2d1F2s03i0T9Dt6C4oy8,44538
IPython/terminal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
IPython/terminal/__pycache__/__init__.cpython-36.pyc,,
IPython/terminal/__pycache__/console.cpython-36.pyc,,
IPython/terminal/__pycache__/debugger.cpython-36.pyc,,
IPython/terminal/__pycache__/embed.cpython-36.pyc,,
IPython/terminal/__pycache__/interactiveshell.cpython-36.pyc,,
IPython/terminal/__pycache__/ipapp.cpython-36.pyc,,
IPython/terminal/__pycache__/magics.cpython-36.pyc,,
IPython/terminal/__pycache__/prompts.cpython-36.pyc,,
IPython/terminal/__pycache__/ptshell.cpython-36.pyc,,
IPython/terminal/__pycache__/ptutils.cpython-36.pyc,,
IPython/terminal/__pycache__/shortcuts.cpython-36.pyc,,
IPython/terminal/console.py,sha256=LhKpLPNW6KCk2fPssrMNjxb3dP4tfxuVb75NtjENwN0,691
IPython/terminal/debugger.py,sha256=cjn5VzE66aQpmzItnlPDByG_K-dvivPU3FMkCimaT7A,5541
IPython/terminal/embed.py,sha256=Zi5lveSOuc-iOuU2BfZhkyTRl8YGTT7kuKGk0itOHGo,15474
IPython/terminal/interactiveshell.py,sha256=pBSBC516PfjWZA1gMD5MmhWGt2g4EIvuqM9n1OYv9lc,25101
IPython/terminal/ipapp.py,sha256=KGppKzzETqwOMmBHiJvR8pnwOdDwGp5EUP3IIBrKtQc,14215
IPython/terminal/magics.py,sha256=RcbbyJnRoXbb7cmZ9OP92MxuTKcPTd_TSZ1Rg9sTrFo,7217
IPython/terminal/prompts.py,sha256=0LCiFqB6fWXpgni3cGaUfkYG-TPnTQMC5-oq4hZui3g,3360
IPython/terminal/pt_inputhooks/__init__.py,sha256=mUgCsvJi574v_6eaM4onUrAdxrO3pNsEO0nn2QGckfk,1135
IPython/terminal/pt_inputhooks/__pycache__/__init__.cpython-36.pyc,,
IPython/terminal/pt_inputhooks/__pycache__/asyncio.cpython-36.pyc,,
IPython/terminal/pt_inputhooks/__pycache__/glut.cpython-36.pyc,,
IPython/terminal/pt_inputhooks/__pycache__/gtk.cpython-36.pyc,,
IPython/terminal/pt_inputhooks/__pycache__/gtk3.cpython-36.pyc,,
IPython/terminal/pt_inputhooks/__pycache__/osx.cpython-36.pyc,,
IPython/terminal/pt_inputhooks/__pycache__/pyglet.cpython-36.pyc,,
IPython/terminal/pt_inputhooks/__pycache__/qt.cpython-36.pyc,,
IPython/terminal/pt_inputhooks/__pycache__/tk.cpython-36.pyc,,
IPython/terminal/pt_inputhooks/__pycache__/wx.cpython-36.pyc,,
IPython/terminal/pt_inputhooks/asyncio.py,sha256=BO9_ye0f2pwaHnjmVsM-QfvT1yXf53w3OBlmcOy9Cl8,1893
IPython/terminal/pt_inputhooks/glut.py,sha256=WVBrwOK2kKI_Eh42Z-pjaQdpdZgkFOSCmfqn50EVVn4,4983
IPython/terminal/pt_inputhooks/gtk.py,sha256=8nikL9KtQ4n0qhKOqRthmrxvYuF-E9SsAYj2qN_Kk3k,2425
IPython/terminal/pt_inputhooks/gtk3.py,sha256=6qb2k4E00MhbpMmnjud0R8Ri_qy-6c3VLlVfovDarLQ,278
IPython/terminal/pt_inputhooks/osx.py,sha256=lsC8E1V6jBTlV3ffKctIHsFfrEhRtPNPp4PMX9TZuu8,4266
IPython/terminal/pt_inputhooks/pyglet.py,sha256=_zyQkcOUGpBoMQ5DGTHbIEIIwtMjN2Ycq5hdfkPE9nQ,2368
IPython/terminal/pt_inputhooks/qt.py,sha256=u1kaWO--Pj-0yFsQf3dO0N-5B09bb3TjmaTREMpUZQk,2099
IPython/terminal/pt_inputhooks/tk.py,sha256=1aSYCec97FQpk7HyvIKHFiWBrJrJN7zgXHENQ3DjMEE,3648
IPython/terminal/pt_inputhooks/wx.py,sha256=RZC045DMr17sMSWS63VZlI_7vkg_evOBZilxJuc6uZQ,7132
IPython/terminal/ptshell.py,sha256=Lvoi7JrpthANUJw0KltD9g5JQ6BgOEL59kgJyELPHcw,296
IPython/terminal/ptutils.py,sha256=qcnakh0rh5-YLthBAY7PwxauFYCi-DxLwCdfoTRiKUA,7179
IPython/terminal/shortcuts.py,sha256=mRH6cYhzgLFKE_i3JzHKiH0DJHZWp0DtMayErq6l3XE,9006
IPython/terminal/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
IPython/terminal/tests/__pycache__/__init__.cpython-36.pyc,,
IPython/terminal/tests/__pycache__/test_debug_magic.cpython-36.pyc,,
IPython/terminal/tests/__pycache__/test_embed.cpython-36.pyc,,
IPython/terminal/tests/__pycache__/test_help.cpython-36.pyc,,
IPython/terminal/tests/__pycache__/test_interactivshell.cpython-36.pyc,,
IPython/terminal/tests/test_debug_magic.py,sha256=KfrS31ZCmNsnETVKBz9o_JMhg_0r2aVIgHkuhzITzVU,2319
IPython/terminal/tests/test_embed.py,sha256=qpcT4DkHnlhVbGn6VGGhNxuX5OFQv0iOgUNroTh-jWQ,4794
IPython/terminal/tests/test_help.py,sha256=h-b4ayNAcHWCyX663H3_pCwWpH_zyZ71cgWePu5KI2c,672
IPython/terminal/tests/test_interactivshell.py,sha256=NKxqon7_D_Xrd2pVOPxVf_XuZxsvU88cBGgDgDQNgKI,6888
IPython/testing/__init__.py,sha256=NMgkVWw_GMG1QFaek8XSUv4DFZSof2kBmAnUPLXle-c,1724
IPython/testing/__main__.py,sha256=sYZ76iOHRiRwgayjK1xF6wI-7uDiTEWzRz6dIMc8ecM,104
IPython/testing/__pycache__/__init__.cpython-36.pyc,,
IPython/testing/__pycache__/__main__.cpython-36.pyc,,
IPython/testing/__pycache__/decorators.cpython-36.pyc,,
IPython/testing/__pycache__/globalipapp.cpython-36.pyc,,
IPython/testing/__pycache__/iptest.cpython-36.pyc,,
IPython/testing/__pycache__/iptestcontroller.cpython-36.pyc,,
IPython/testing/__pycache__/ipunittest.cpython-36.pyc,,
IPython/testing/__pycache__/skipdoctest.cpython-36.pyc,,
IPython/testing/__pycache__/tools.cpython-36.pyc,,
IPython/testing/decorators.py,sha256=3ikwM4jM9VWbz-W76-8DNnSCviS-aWnShMWk3fjkXvA,12824
IPython/testing/globalipapp.py,sha256=ot27RlNGmZNB3_LcUoK0Z-NO__TvM2S9RfH6He30Ywk,4558
IPython/testing/iptest.py,sha256=yixHlylKTmEor1i-B2rgvCxADJeTN6X4elzDNXQEtAI,16957
IPython/testing/iptestcontroller.py,sha256=TbZoqrdQswMjJzgsJj3q-1PxnEBX3Ody7LGlg_0FW4c,17041
IPython/testing/ipunittest.py,sha256=lmCOgPk1HuQnfIM4bdYX-eC7X5NmwQON-Rx_PuVPOSI,6540
IPython/testing/plugin/README.txt,sha256=9Gkx2cWar5iNgkBoZY2HGvEvSEek3tj_MJIDbqNt5Ug,1043
IPython/testing/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
IPython/testing/plugin/__pycache__/__init__.cpython-36.pyc,,
IPython/testing/plugin/__pycache__/dtexample.cpython-36.pyc,,
IPython/testing/plugin/__pycache__/ipdoctest.cpython-36.pyc,,
IPython/testing/plugin/__pycache__/iptest.cpython-36.pyc,,
IPython/testing/plugin/__pycache__/setup.cpython-36.pyc,,
IPython/testing/plugin/__pycache__/show_refs.cpython-36.pyc,,
IPython/testing/plugin/__pycache__/simple.cpython-36.pyc,,
IPython/testing/plugin/__pycache__/simplevars.cpython-36.pyc,,
IPython/testing/plugin/__pycache__/test_ipdoctest.cpython-36.pyc,,
IPython/testing/plugin/__pycache__/test_refs.cpython-36.pyc,,
IPython/testing/plugin/dtexample.py,sha256=SImcXQdY-eKqETF99BQioXx0mqClneeWPBxSer_GRag,2839
IPython/testing/plugin/ipdoctest.py,sha256=6oXbKNtuX2hG1yLPJ1Ixv1zlamMvFFzWLX1EJ1zBIdo,31159
IPython/testing/plugin/iptest.py,sha256=6-0hkkJ6xtLWLyEmFGFjdN-bgDZsIZ7jZBDt2YSG6M0,485
IPython/testing/plugin/setup.py,sha256=945a09Zm2HWWvukd5IVZ4v5p1czQPJfVlr5_Idey2AA,539
IPython/testing/plugin/show_refs.py,sha256=EnvomBLndT4cAK_LJJk56dWoRBZMlRkVRVMd2BhNZlM,355
IPython/testing/plugin/simple.py,sha256=mE13Fpu2hWng5DnEtdoMURiapKt9Zmbeb0fJpVi3Eh0,512
IPython/testing/plugin/simplevars.py,sha256=VlIiArahWGnJXQC8Kda36GOQOBlhEg6QeeW4DQ-IaOQ,23
IPython/testing/plugin/test_combo.txt,sha256=rrXjdOlRh9DltFu3GpuWuD0Hojtj4QQcEBOm52Z3-dE,923
IPython/testing/plugin/test_example.txt,sha256=CGM8aZIYHlePDdAnR1yX3MfDGu0OceZpUiI_Y4tZGaU,730
IPython/testing/plugin/test_exampleip.txt,sha256=IBLTjUCPoQKD-1fxzYABHE9MFOBW3kOY-jvNdXdTVSo,816
IPython/testing/plugin/test_ipdoctest.py,sha256=kktP3F7lNzT23S0e4z_UVFN8qewFjdxrHidpjvnwBwQ,1598
IPython/testing/plugin/test_refs.py,sha256=3fYzMVGjb9LiAumL-py0icgicvA-z7znozEQrF5wdm8,869
IPython/testing/skipdoctest.py,sha256=oERP1rAq6XJjR4qpndhw7d76JYX3neHt0UWiUrfWgs0,713
IPython/testing/tests/__init__.py,sha256=J4sAH04HH8RQnex-9174r9l7O15gIPzYUBXCcn6oAC0,558
IPython/testing/tests/__pycache__/__init__.cpython-36.pyc,,
IPython/testing/tests/__pycache__/test_decorators.cpython-36.pyc,,
IPython/testing/tests/__pycache__/test_ipunittest.cpython-36.pyc,,
IPython/testing/tests/__pycache__/test_tools.cpython-36.pyc,,
IPython/testing/tests/test_decorators.py,sha256=wMxAIvo0iri9Lct8KNvEmkz050KocNPRwJJ1EdwHstw,3916
IPython/testing/tests/test_ipunittest.py,sha256=7-1iCczPW2mH7aqcZA6F_yGpV7EBVYz8s_3rI1mNqsc,3301
IPython/testing/tests/test_tools.py,sha256=6-VoZhoJXJUAaTZUhtQYXu2b-puasEWDm6x0v1I2fkg,4226
IPython/testing/tools.py,sha256=6Q54Di7ogm85q3XaT_w4_8cUGFwuTQqGKZYTTRERNT8,14099
IPython/utils/PyColorize.py,sha256=VpRFScmCJxcMpk_mpcFTkeTqbfASBuHtfXt1ruFM7Ww,10875
IPython/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
IPython/utils/__pycache__/PyColorize.cpython-36.pyc,,
IPython/utils/__pycache__/__init__.cpython-36.pyc,,
IPython/utils/__pycache__/_process_cli.cpython-36.pyc,,
IPython/utils/__pycache__/_process_common.cpython-36.pyc,,
IPython/utils/__pycache__/_process_posix.cpython-36.pyc,,
IPython/utils/__pycache__/_process_win32.cpython-36.pyc,,
IPython/utils/__pycache__/_process_win32_controller.cpython-36.pyc,,
IPython/utils/__pycache__/_sysinfo.cpython-36.pyc,,
IPython/utils/__pycache__/capture.cpython-36.pyc,,
IPython/utils/__pycache__/colorable.cpython-36.pyc,,
IPython/utils/__pycache__/coloransi.cpython-36.pyc,,
IPython/utils/__pycache__/contexts.cpython-36.pyc,,
IPython/utils/__pycache__/daemonize.cpython-36.pyc,,
IPython/utils/__pycache__/data.cpython-36.pyc,,
IPython/utils/__pycache__/decorators.cpython-36.pyc,,
IPython/utils/__pycache__/dir2.cpython-36.pyc,,
IPython/utils/__pycache__/encoding.cpython-36.pyc,,
IPython/utils/__pycache__/eventful.cpython-36.pyc,,
IPython/utils/__pycache__/frame.cpython-36.pyc,,
IPython/utils/__pycache__/generics.cpython-36.pyc,,
IPython/utils/__pycache__/importstring.cpython-36.pyc,,
IPython/utils/__pycache__/io.cpython-36.pyc,,
IPython/utils/__pycache__/ipstruct.cpython-36.pyc,,
IPython/utils/__pycache__/jsonutil.cpython-36.pyc,,
IPython/utils/__pycache__/localinterfaces.cpython-36.pyc,,
IPython/utils/__pycache__/log.cpython-36.pyc,,
IPython/utils/__pycache__/module_paths.cpython-36.pyc,,
IPython/utils/__pycache__/openpy.cpython-36.pyc,,
IPython/utils/__pycache__/path.cpython-36.pyc,,
IPython/utils/__pycache__/pickleutil.cpython-36.pyc,,
IPython/utils/__pycache__/process.cpython-36.pyc,,
IPython/utils/__pycache__/py3compat.cpython-36.pyc,,
IPython/utils/__pycache__/sentinel.cpython-36.pyc,,
IPython/utils/__pycache__/shimmodule.cpython-36.pyc,,
IPython/utils/__pycache__/signatures.cpython-36.pyc,,
IPython/utils/__pycache__/strdispatch.cpython-36.pyc,,
IPython/utils/__pycache__/sysinfo.cpython-36.pyc,,
IPython/utils/__pycache__/syspathcontext.cpython-36.pyc,,
IPython/utils/__pycache__/tempdir.cpython-36.pyc,,
IPython/utils/__pycache__/terminal.cpython-36.pyc,,
IPython/utils/__pycache__/text.cpython-36.pyc,,
IPython/utils/__pycache__/timing.cpython-36.pyc,,
IPython/utils/__pycache__/tokenutil.cpython-36.pyc,,
IPython/utils/__pycache__/traitlets.cpython-36.pyc,,
IPython/utils/__pycache__/tz.cpython-36.pyc,,
IPython/utils/__pycache__/ulinecache.cpython-36.pyc,,
IPython/utils/__pycache__/version.cpython-36.pyc,,
IPython/utils/__pycache__/wildcard.cpython-36.pyc,,
IPython/utils/_process_cli.py,sha256=Gff6ROC8CgGjSPy2Em-dSOPwypZLcSijq__TXurkDsI,2415
IPython/utils/_process_common.py,sha256=uG1mlkFEzgsl7AxUkYvE2LCdbOojB8V1do1YddqesoY,6981
IPython/utils/_process_posix.py,sha256=7a-3pdHXKdzApZEC3Q27GFpUJLO4mBPdr8kGc6oKMIM,8925
IPython/utils/_process_win32.py,sha256=6tBp4wYfR9MS-yIGFWcyxeu_8fYPn82rLfiHr757Zlw,6764
IPython/utils/_process_win32_controller.py,sha256=PtLJ6xi62ta9386oVNneS-IaVI1YFmttnq2W3Zl7i7M,21326
IPython/utils/_sysinfo.py,sha256=iX4G5nlXeetNn2D5cua3XuCV5I0eZ98K9c9xIHnMn04,46
IPython/utils/capture.py,sha256=seIkDR1LnmlsapRuvon5oiJhUc0pkUA-r_cCDHcH4AI,5161
IPython/utils/colorable.py,sha256=SCaeLJJlW14DZvoyaYPL-I6jLs78GA10xh0jCuSw8IY,786
IPython/utils/coloransi.py,sha256=xqQRStXT7fULoRD8ikbCa55Y0FcQAjrjqKgA9XN3W7o,6958
IPython/utils/contexts.py,sha256=KGp7J3KhuMyagEyymNAygyQ_XU5KaSyFyTJAOMPPWmY,1978
IPython/utils/daemonize.py,sha256=91wAJwuFXA1FM8wGlbBJCPPF906jFJ-rdJOUp4b_5ZE,200
IPython/utils/data.py,sha256=36VVGY1b0JG7_zSdbVSy8IzLqM0uT-uB12TBYWgd1lI,1015
IPython/utils/decorators.py,sha256=ttuEp6xg6uF0h3UMZDKB9WNQSoSNiADY5uYeEg6FG5c,2071
IPython/utils/dir2.py,sha256=D8w5dlmaTLY6yyA9AEBDC1nqx4po4Ol6i2tGG9eXuO0,2232
IPython/utils/encoding.py,sha256=FpSYJdCsFi9g3tniRFb2Lpppq1vBhkccPtxAR4lK8BE,2851
IPython/utils/eventful.py,sha256=ueH8yDENGzeCSLGHZX9SAvp2VU3AusGrMGd1hBNgJN8,139
IPython/utils/frame.py,sha256=qCvAtdnKtQmR7DjXOw3pHadVOe6h_PCrh9_gTbKa48k,3051
IPython/utils/generics.py,sha256=9Ie1dTXrX912XAEDS6G0_xRQ3OdRA3sWdjPs2HTJnU0,707
IPython/utils/importstring.py,sha256=mCgL0WOfQqRF-F6ae-bAAiAxH5fWm5wfq8ubOpKxzyk,1035
IPython/utils/io.py,sha256=-TZjIL1klVJcov-xjm98z_YrtEDMu-qH1kycm-MEjRg,8170
IPython/utils/ipstruct.py,sha256=4fmnDVLWQcxCQDSxkpq-xS754flxSLpDT59C6jsBUtc,11864
IPython/utils/jsonutil.py,sha256=2QsAXueCIbbmjyz37Im9yXU41XK_XGJ9aGA7NGilDIs,148
IPython/utils/localinterfaces.py,sha256=7Wt6gcjgHX4mcWbx_k3Z1GL4iR388ZRqM3Hhhh4_Uwg,169
IPython/utils/log.py,sha256=RB7Vkr2YiSyDvNg2h0qr-7MPvZ4GaFE2B9-ZLJX9ZpA,124
IPython/utils/module_paths.py,sha256=xlsRW6cnRF6kkvrr9I7rEKRiaePn0pjDpfwanNE2kBg,2340
IPython/utils/openpy.py,sha256=f012vesyEe2Fy94tdIxoQJtW3NDRyK_f6RfS8AIjw2E,3363
IPython/utils/path.py,sha256=LHVR8QwFSHJBrqzc1aAFkW23LXVpPrK7_5f5FAvt9kM,14041
IPython/utils/pickleutil.py,sha256=5rFOF4ty7PGwTsqoT6Xie3lBhBLDeI3GbPDQj91nWWA,144
IPython/utils/process.py,sha256=Id0XV9-CzfUInpEWQJTcjJUePte4sQuaJ-pmjgPIxEA,1878
IPython/utils/py3compat.py,sha256=O54CAzU2wQVE4KoMwQOLz_wLs9uu5y2SEOPcATAQ8pE,5496
IPython/utils/sentinel.py,sha256=pRzWbnR7gjM5R3g0ZqjSo94QNJpxgKWOLXT-yY18FmU,421
IPython/utils/shimmodule.py,sha256=JYJvA806JRy9ej_cCF_MhQ9RcsVe7oq23BzEALbojTI,2855
IPython/utils/signatures.py,sha256=dIrPwSPou7WQWs5018lzs3-dEKwG-dX3g4_2_OCvdg4,474
IPython/utils/strdispatch.py,sha256=LM8jEQo7G77PxpjusJ7EqDEQW4YHYpEyb7xnE6RrEaw,1838
IPython/utils/sysinfo.py,sha256=ft8G7RoRWSmcrESJQKEkByq1q3kj0f9npaITkonTt7c,5160
IPython/utils/syspathcontext.py,sha256=Q3VfzvSMHpGV4wHhHXjNfX8bVmR1T0b7ivULhvqX7sc,1694
IPython/utils/tempdir.py,sha256=CruNRgsv0gpgYpcyAiFaCv8bRcG5gO1OY61dInSSPNk,1759
IPython/utils/terminal.py,sha256=WdMvxwr9tsyjWG5CRiJeKsoRONq-lyrn_kvrz1KFWr8,3335
IPython/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
IPython/utils/tests/__pycache__/__init__.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_capture.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_decorators.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_dir2.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_imports.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_importstring.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_io.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_module_paths.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_openpy.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_path.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_process.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_pycolorize.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_shimmodule.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_sysinfo.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_tempdir.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_text.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_tokenutil.cpython-36.pyc,,
IPython/utils/tests/__pycache__/test_wildcard.cpython-36.pyc,,
IPython/utils/tests/test_capture.py,sha256=vhLi9RxHtYXWWut0dFln_oC-NGxWW3H6qic3BOXuDwk,5474
IPython/utils/tests/test_decorators.py,sha256=y_Hp5tjT8YbXe87HLe0-b5qhU9BcEzKMUdzAJdy-OWg,170
IPython/utils/tests/test_dir2.py,sha256=mCPv5TzKhsT0_LB5FUG85-Fp5gtn56wZjNi_iH1Z7Z8,1371
IPython/utils/tests/test_imports.py,sha256=6SWziRNPdGfA47SpcjXDJG7B6173EHT6vT39juEfBd0,439
IPython/utils/tests/test_importstring.py,sha256=GKmgvB40f5uGgItZz_jpL9imJDEycHbKGf9KhZZ_03Y,1247
IPython/utils/tests/test_io.py,sha256=FKs86T4pHkOYiK7BmKQDAnTNHjwtyIYMkN8U784T39E,2599
IPython/utils/tests/test_module_paths.py,sha256=ILpE5h2QescvQCrqxAariESL2nlin_Y5GNljYGuJ218,3409
IPython/utils/tests/test_openpy.py,sha256=_gjgjZF3GI7wLBZfZAqIIyFeIDZMIAf56KyzUdwa_78,1271
IPython/utils/tests/test_path.py,sha256=tkzzG5C1Ju8NqViBwFIV5TPIllyHccW885EVDnCE8bM,16313
IPython/utils/tests/test_process.py,sha256=kjIRrFTbtiMnM6COp3JVVGW4gopfX1xOefFE_fBtq2c,6623
IPython/utils/tests/test_pycolorize.py,sha256=JvmdbmKCQYaG1nimN3Cbp-D0mA8DBB4fjTD9ltdJxu0,2069
IPython/utils/tests/test_shimmodule.py,sha256=9XeqBA_22NHdsRwdfjCmgdeGlcTKE6oPumwSDr86nMo,344
IPython/utils/tests/test_sysinfo.py,sha256=IMtPk7v6LwaEDZZsVD6VnPgQwRHc7OJeVah6FOg9HuY,390
IPython/utils/tests/test_tempdir.py,sha256=7kce7ULLzQBvwSwGYO3vdMVxRtmgqpUv-P6zY9xRXzg,1039
IPython/utils/tests/test_text.py,sha256=a_qfcoMvE3uE8HTmvkqb1ih0s4nLFMIyqdGtKMsglaI,7780
IPython/utils/tests/test_tokenutil.py,sha256=wuRrvNlbnEUFakAUoeSsCSvG4VVRoilOMLoCraJ1ETM,3955
IPython/utils/tests/test_wildcard.py,sha256=VJVK7LxaEYJKv6Tynlj4ye_GRyMHEI_3iT80i3PJuZk,4729
IPython/utils/text.py,sha256=o8koIch6DBZapftH-vaxnB8wJLNkVIszBAR7qZUNggQ,23288
IPython/utils/timing.py,sha256=4zlwKOkJKmSnGlhpw6lak6qUTSZdUT3NXQESsF5fRQ4,4086
IPython/utils/tokenutil.py,sha256=qAwI0e6h2ANU34C_2RG5f4Ro7mQ6TxHv72GEJhxtS1U,3965
IPython/utils/traitlets.py,sha256=SnRNQ20hSnvceaWsTIjZRe2R90NAC58PVJl9bMt-41A,143
IPython/utils/tz.py,sha256=gjMCFONMznt3xNG18BBNCXI4YRPlOFT7OJdrQ8Ntt-M,1352
IPython/utils/ulinecache.py,sha256=WySMSMJDRsm1Z5CGY24KdmoA2eLDZEayqWR6V_sIuik,684
IPython/utils/version.py,sha256=lLBSR8mtlF1eCzwwOejljchAyfSy0opD8b0w_QjR97Q,1227
IPython/utils/wildcard.py,sha256=6EEc3OEYp-IuSoidL6nwpaHg--GxnzbAJTmFiz77CNE,4612
ipython-7.16.1.dist-info/DESCRIPTION.rst,sha256=2iqlfwontsrCsyOFQju2rMHWeYYMgNOgrnGHcS-c_qE,1372
ipython-7.16.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
ipython-7.16.1.dist-info/LICENSE.txt,sha256=4OOQdI7UQKuJPKHxNaiKkgqvVAnbuQpbQnx1xeUSaPs,1720
ipython-7.16.1.dist-info/METADATA,sha256=I2vNI3276WTE0i9IBCAeAUATLlaN_e2Air0rJ6xG7bk,4401
ipython-7.16.1.dist-info/RECORD,,
ipython-7.16.1.dist-info/WHEEL,sha256=8Lm45v9gcYRm70DrgFGVe4WsUtUMi1_0Tso1hqPGMjA,92
ipython-7.16.1.dist-info/entry_points.txt,sha256=KT9gSuNYhuFMuzUiLcoBtAFuhQJqgk8KHzCD6Or8APY,340
ipython-7.16.1.dist-info/metadata.json,sha256=BvKebhN9rSLG5wmijVV6-Vj34QYJ1pTWeYdsISYKxeY,2788
ipython-7.16.1.dist-info/top_level.txt,sha256=PKjvHtNCBZ9EHTmd2mwJ1J_k3j0F6D1lTFzIcJFFPEU,8

View file

@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.30.0)
Root-Is-Purelib: true
Tag: py3-none-any

View file

@ -0,0 +1,11 @@
[console_scripts]
iptest = IPython.testing.iptestcontroller:main
iptest3 = IPython.testing.iptestcontroller:main
ipython = IPython:start_ipython
ipython3 = IPython:start_ipython
[pygments.lexers]
ipython = IPython.lib.lexers:IPythonLexer
ipython3 = IPython.lib.lexers:IPython3Lexer
ipythonconsole = IPython.lib.lexers:IPythonConsoleLexer

View file

@ -0,0 +1 @@
{"classifiers": ["Framework :: IPython", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Topic :: System :: Shells"], "extensions": {"python.commands": {"wrap_console": {"iptest": "IPython.testing.iptestcontroller:main", "iptest3": "IPython.testing.iptestcontroller:main", "ipython": "IPython:start_ipython", "ipython3": "IPython:start_ipython"}}, "python.details": {"contacts": [{"email": "ipython-dev@python.org", "name": "The IPython Development Team", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst", "license": "LICENSE.txt"}, "project_urls": {"Home": "https://ipython.org"}}, "python.exports": {"console_scripts": {"iptest": "IPython.testing.iptestcontroller:main", "iptest3": "IPython.testing.iptestcontroller:main", "ipython": "IPython:start_ipython", "ipython3": "IPython:start_ipython"}, "pygments.lexers": {"ipython": "IPython.lib.lexers:IPythonLexer", "ipython3": "IPython.lib.lexers:IPython3Lexer", "ipythonconsole": "IPython.lib.lexers:IPythonConsoleLexer"}}}, "extras": ["all", "doc", "kernel", "nbconvert", "nbformat", "notebook", "parallel", "qtconsole", "terminal", "test"], "generator": "bdist_wheel (0.30.0)", "keywords": ["Interactive", "Interpreter", "Shell", "Embedding"], "license": "BSD", "metadata_version": "2.0", "name": "ipython", "platform": "Linux", "project_url": "Documentation, https://ipython.readthedocs.io/", "requires_python": ">=3.6", "run_requires": [{"extra": "all", "requires": ["Sphinx (>=1.3)", "ipykernel", "ipyparallel", "ipywidgets", "nbconvert", "nbformat", "nose (>=0.10.1)", "notebook", "numpy (>=1.14)", "pygments", "qtconsole", "requests", "testpath"]}, {"extra": "doc", "requires": ["Sphinx (>=1.3)"]}, {"requires": ["backcall", "decorator", "jedi (>=0.10)", "pickleshare", "prompt-toolkit (!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0)", "pygments", "setuptools (>=18.5)", "traitlets (>=4.2)"]}, {"extra": "kernel", "requires": ["ipykernel"]}, {"extra": "test", "requires": ["ipykernel", "nbformat", "nose (>=0.10.1)", "numpy (>=1.14)", "pygments", "requests", "testpath"]}, {"extra": "parallel", "requires": ["ipyparallel"]}, {"extra": "notebook", "requires": ["ipywidgets", "notebook"]}, {"extra": "nbconvert", "requires": ["nbconvert"]}, {"extra": "nbformat", "requires": ["nbformat"]}, {"extra": "qtconsole", "requires": ["qtconsole"]}, {"environment": "sys_platform != \"win32\"", "requires": ["pexpect"]}, {"environment": "sys_platform == \"darwin\"", "requires": ["appnope"]}, {"environment": "sys_platform == \"win32\"", "requires": ["colorama"]}], "summary": "IPython: Productive Interactive Computing", "version": "7.16.1"}

View file

@ -0,0 +1 @@
IPython