[Python-modules-commits] [ipython4] branch master updated (bafc171 -> 06b414f)

Gordon Ball chronitis-guest at moszumanska.debian.org
Sat Jun 24 13:39:48 UTC 2017


This is an automated email from the git hooks/post-receive script.

chronitis-guest pushed a change to branch master
in repository ipython4.

      from  bafc171   Release 5.1.0-2 to Debian unstable.
       new  5fa66cb   record new upstream branch created by importing ipython_5.4.0.orig.tar.gz
       new  77acd4d   Import ipython_5.4.0.orig.tar.gz
       new  b20a6a9   use setuptools also for the install target so the python*:Depends substitutions work
       new  f05da0e   merge patched into master
       new  ff2b8bb   Use dh compat 10
       new  7f49ec7   Standards-version 4.0.0
       new  6f6b4f3   Use python3 sphinx for documentation
       new  cff9c50   Minimum python3 should be 3.3
       new  60904a8   Update changelog for 5.4.0
       new  0ac77c6   Move missing documentation dependencies to python3
       new  0bc1d98   Add autopkgtest suite
       new  e26bc53   Install the changelog
       new  467513c   python3-ipython should depend on python3-pexpect, not python-pexpect
       new  06b414f   fix the minimal syntax example

The 14 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitattributes                                     |    5 +
 .gitignore                                         |   23 +
 .mailmap                                           |  156 +
 .travis.yml                                        |   45 +
 CONTRIBUTING.md                                    |   45 +
 Dockerfile                                         |    7 +
 IPython/config.py                                  |    2 +-
 IPython/core/completer.py                          |   69 +-
 IPython/core/completerlib.py                       |    6 +
 IPython/core/debugger.py                           |   55 +-
 IPython/core/display.py                            |  244 +-
 IPython/core/displayhook.py                        |   16 +-
 IPython/core/displaypub.py                         |   16 +-
 IPython/core/excolors.py                           |   10 +-
 IPython/core/formatters.py                         |  110 +-
 IPython/core/history.py                            |    3 +-
 IPython/core/hooks.py                              |    2 +-
 IPython/core/inputtransformer.py                   |   30 +-
 IPython/core/interactiveshell.py                   |   17 +-
 IPython/core/magics/basic.py                       |   39 +-
 IPython/core/magics/execution.py                   |    7 +-
 IPython/core/magics/script.py                      |    8 +
 IPython/core/oinspect.py                           |   14 +-
 IPython/core/pylabtools.py                         |   39 +-
 IPython/core/release.py                            |    6 +-
 IPython/core/tests/test_completer.py               |    7 +
 IPython/core/tests/test_display.py                 |  140 +
 IPython/core/tests/test_formatters.py              |   98 +-
 IPython/core/tests/test_inputtransformer.py        |    5 +
 IPython/core/tests/test_oinspect.py                |   29 +-
 IPython/core/tests/test_paths.py                   |    2 +-
 IPython/core/tests/test_run.py                     |    9 +-
 IPython/core/ultratb.py                            |    6 +
 IPython/core/usage.py                              |   34 +-
 IPython/extensions/autoreload.py                   |    4 +-
 IPython/external/qt_for_kernel.py                  |    7 +-
 IPython/external/qt_loaders.py                     |  108 +-
 IPython/frontend.py                                |    2 +-
 IPython/html.py                                    |    2 +-
 IPython/kernel/__init__.py                         |    2 +-
 IPython/lib/deepreload.py                          |    3 +-
 IPython/lib/display.py                             |    8 +-
 IPython/lib/editorhooks.py                         |    2 +-
 IPython/lib/guisupport.py                          |   27 +-
 IPython/lib/inputhook.py                           |    4 +-
 IPython/lib/tests/test_deepreload.py               |   29 +-
 IPython/lib/tests/test_editorhooks.py              |    1 +
 IPython/nbconvert.py                               |    2 +-
 IPython/nbformat.py                                |    2 +-
 IPython/parallel.py                                |    2 +-
 IPython/qt.py                                      |    2 +-
 IPython/sphinxext/ipython_directive.py             |   24 +-
 IPython/terminal/console.py                        |    2 +-
 IPython/terminal/debugger.py                       |   45 +-
 IPython/terminal/embed.py                          |  121 +-
 IPython/terminal/interactiveshell.py               |  112 +-
 IPython/terminal/ipapp.py                          |   11 +-
 IPython/terminal/magics.py                         |    5 +-
 IPython/terminal/prompts.py                        |   14 +-
 IPython/terminal/pt_inputhooks/__init__.py         |   13 +-
 IPython/terminal/pt_inputhooks/osx.py              |    6 -
 IPython/terminal/pt_inputhooks/qt.py               |   11 +-
 IPython/terminal/ptutils.py                        |   17 +-
 IPython/terminal/shortcuts.py                      |   25 +-
 IPython/terminal/tests/test_interactivshell.py     |   36 +-
 IPython/testing/decorators.py                      |   20 +-
 IPython/testing/iptest.py                          |   10 +
 IPython/testing/tools.py                           |   43 +-
 IPython/utils/_get_terminal_size.py                |  131 +
 IPython/utils/_sysinfo.py                          |    2 +-
 IPython/utils/capture.py                           |    6 +-
 IPython/utils/io.py                                |    7 +-
 IPython/utils/path.py                              |   17 +-
 IPython/utils/terminal.py                          |    7 +-
 IPython/utils/tests/test_io.py                     |   18 +-
 MANIFEST.in                                        |   36 +
 PKG-INFO                                           |   60 -
 codecov.yml                                        |    9 +
 debian/.git-dpm                                    |   14 +-
 debian/changelog                                   |   13 +
 debian/compat                                      |    2 +-
 debian/control                                     |   20 +-
 ...ols-also-for-the-install-target-so-the-py.patch |    6 +-
 debian/rules                                       |    7 +
 debian/tests/control                               |   13 +
 debian/tests/test.ipy                              |   10 +
 docs/Makefile                                      |    2 +-
 docs/autogen_shortcuts.py                          |    3 +-
 docs/source/api/index.rst                          |    2 +-
 docs/source/conf.py                                |   10 +-
 docs/source/config/details.rst                     |    7 +-
 docs/source/config/extensions/index.rst            |    2 +-
 docs/source/coredev/release_process.rst            |   19 +-
 docs/source/development/wrapperkernels.rst         |    2 +-
 docs/source/index.rst                              |    4 +-
 docs/source/install/install.rst                    |   14 +-
 docs/source/interactive/plotting.rst               |   25 +
 docs/source/interactive/reference.rst              |   46 +-
 docs/source/overview.rst                           |    2 +-
 docs/source/whatsnew/development.rst               |    1 -
 docs/source/whatsnew/github-stats-0.13.rst         |    4 +-
 docs/source/whatsnew/github-stats-4.rst            |    2 +-
 docs/source/whatsnew/github-stats-5.rst            |  104 +
 docs/source/whatsnew/version3.rst                  |    2 +-
 docs/source/whatsnew/version5.rst                  |  156 +
 examples/IPython Kernel/Custom Display Logic.ipynb | 1058 +--
 examples/IPython Kernel/Updating Displays.ipynb    |  359 +
 setup.py                                           |    8 +-
 tools/alldeps/Makefile                             |  130 +
 tools/alldeps/README.txt                           |  109 +
 tools/alldeps/pkginstall                           |  119 +
 tools/alldeps/pkginstall.cfg                       |   27 +
 tools/backport_pr.py                               |  189 +
 tools/build_release                                |   29 +
 tools/check_sources.py                             |   55 +
 tools/gen_latex_symbols.py                         |   89 +
 tools/gh_api.py                                    |  303 +
 tools/git-mpr.py                                   |  128 +
 tools/git-mrb                                      |   80 +
 tools/github_stats.py                              |  231 +
 tools/make_tarball.py                              |   22 +
 tools/mknbindex.py                                 |   36 +
 tools/post_pr_test.py                              |   13 +
 tools/release                                      |   94 +
 tools/test_pr.py                                   |  289 +
 tools/tests/ANSI Test.ipynb                        |  560 ++
 tools/tests/CSS Reference.ipynb                    | 8193 ++++++++++++++++++++
 tools/tests/Confined Output.ipynb                  |  307 +
 tools/tests/Markdown Pandoc Limitations.ipynb      | 2691 +++++++
 tools/tests/Test Output Callbacks.ipynb            |  291 +
 tools/tests/embed/embed1.py                        |   10 +
 tools/tests/embed/embed2.py                        |    5 +
 tools/tests/embed/embed3.py                        |    7 +
 tools/tests/embed/embed_division.py                |    5 +
 tools/tests/embed/embed_no_division.py             |    6 +
 tools/tests/heartbeat/gilsleep.ipynb               |   72 +
 tools/tests/heartbeat/hb_gil.py                    |   31 +
 tools/tests/inline_figshow.py                      |   23 +
 tools/tests/mpl-switch/Matplotlib Switching.ipynb  |  654 ++
 tools/testupload                                   |   22 +
 tools/toollib.py                                   |   57 +
 tools/update_whatsnew.py                           |   82 +
 tox.ini                                            |   28 +
 143 files changed, 17818 insertions(+), 1405 deletions(-)
 create mode 100644 .gitattributes
 create mode 100644 .gitignore
 create mode 100644 .mailmap
 create mode 100644 .travis.yml
 create mode 100644 CONTRIBUTING.md
 create mode 100644 Dockerfile
 create mode 100644 IPython/utils/_get_terminal_size.py
 create mode 100644 MANIFEST.in
 delete mode 100644 PKG-INFO
 create mode 100644 codecov.yml
 create mode 100644 debian/tests/control
 create mode 100644 debian/tests/test.ipy
 create mode 100644 examples/IPython Kernel/Updating Displays.ipynb
 create mode 100644 tools/alldeps/Makefile
 create mode 100644 tools/alldeps/README.txt
 create mode 100755 tools/alldeps/pkginstall
 create mode 100644 tools/alldeps/pkginstall.cfg
 create mode 100755 tools/backport_pr.py
 create mode 100755 tools/build_release
 create mode 100755 tools/check_sources.py
 create mode 100644 tools/gen_latex_symbols.py
 create mode 100644 tools/gh_api.py
 create mode 100755 tools/git-mpr.py
 create mode 100755 tools/git-mrb
 create mode 100755 tools/github_stats.py
 create mode 100755 tools/make_tarball.py
 create mode 100755 tools/mknbindex.py
 create mode 100755 tools/post_pr_test.py
 create mode 100755 tools/release
 create mode 100755 tools/test_pr.py
 create mode 100644 tools/tests/ANSI Test.ipynb
 create mode 100644 tools/tests/CSS Reference.ipynb
 create mode 100644 tools/tests/Confined Output.ipynb
 create mode 100644 tools/tests/Markdown Pandoc Limitations.ipynb
 create mode 100644 tools/tests/Test Output Callbacks.ipynb
 create mode 100644 tools/tests/embed/embed1.py
 create mode 100644 tools/tests/embed/embed2.py
 create mode 100644 tools/tests/embed/embed3.py
 create mode 100644 tools/tests/embed/embed_division.py
 create mode 100644 tools/tests/embed/embed_no_division.py
 create mode 100644 tools/tests/heartbeat/gilsleep.ipynb
 create mode 100644 tools/tests/heartbeat/hb_gil.py
 create mode 100644 tools/tests/inline_figshow.py
 create mode 100644 tools/tests/mpl-switch/Matplotlib Switching.ipynb
 create mode 100755 tools/testupload
 create mode 100644 tools/toollib.py
 create mode 100755 tools/update_whatsnew.py
 create mode 100644 tox.ini

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/ipython4.git



More information about the Python-modules-commits mailing list