[spyder] 01/05: Merge tag 'upstream/3.1.4+dfsg1' into experimental

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Tue May 16 17:18:13 UTC 2017


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

ghisvail-guest pushed a commit to branch experimental
in repository spyder.

commit eec5a63e28b2b8353d1469c0b2197628e7368e43
Merge: c8624a9 328557e
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date:   Sat May 13 15:20:10 2017 +0100

    Merge tag 'upstream/3.1.4+dfsg1' into experimental
    
    Upstream version 3.1.4+dfsg1

 CHANGELOG.md                                       | 2626 ++++++++++++++++++++
 MANIFEST.in                                        |    4 +-
 PKG-INFO                                           |    4 +-
 README.md                                          |    2 +-
 doc/installation.rst                               |    2 +-
 scripts/spyder.desktop                             |    2 +-
 scripts/spyder3.appdata.xml                        |   32 +
 scripts/spyder3.desktop                            |    1 -
 setup.py                                           |   24 +-
 spyder/__init__.py                                 |    2 +-
 spyder/app/mainwindow.py                           |   32 +-
 spyder/app/tests/__init__.py                       |    9 +
 spyder/app/tests/notebook.ipynb                    |   54 +
 spyder/app/tests/script.py                         |   10 +
 spyder/app/tests/test_mainwindow.py                |  395 +++
 spyder/app/tests/test_tour.py                      |   32 +
 spyder/app/tour.py                                 |   10 +-
 spyder/config/base.py                              |    2 +-
 spyder/config/gui.py                               |    2 +-
 spyder/config/tests/__init__.py                    |    9 +
 spyder/config/tests/test_user.py                   |   52 +
 spyder/config/user.py                              |   10 +-
 spyder/interpreter.py                              |    2 +-
 spyder/locale/es/LC_MESSAGES/spyder.mo             |  Bin 110745 -> 111914 bytes
 spyder/locale/es/LC_MESSAGES/spyder.po             |  933 +++----
 spyder/locale/fr/LC_MESSAGES/spyder.mo             |  Bin 111188 -> 111188 bytes
 spyder/locale/fr/LC_MESSAGES/spyder.po             |  920 +++----
 spyder/locale/ja/LC_MESSAGES/spyder.mo             |  Bin 104493 -> 117336 bytes
 spyder/locale/ja/LC_MESSAGES/spyder.po             | 1204 ++++-----
 spyder/locale/pt_BR/LC_MESSAGES/spyder.mo          |  Bin 107936 -> 107940 bytes
 spyder/locale/pt_BR/LC_MESSAGES/spyder.po          |  923 +++----
 spyder/locale/ru/LC_MESSAGES/spyder.mo             |  Bin 135253 -> 138610 bytes
 spyder/locale/ru/LC_MESSAGES/spyder.po             |  972 ++++----
 spyder/locale/spyder.pot                           |  916 +++----
 spyder/plugins/editor.py                           |    6 +-
 spyder/plugins/projects.py                         |    3 +
 spyder/plugins/shortcuts.py                        |    2 +-
 spyder/plugins/tests/__init__.py                   |    9 +
 spyder/plugins/tests/test_ipythonconsole.py        |  149 +-
 spyder/plugins/tests/test_layoutdialog.py          |   50 +
 spyder/plugins/tests/test_shorcuts.py              |   37 +
 spyder/scientific_startup.py                       |    8 +-
 spyder/tests/__init__.py                           |    9 +
 spyder/tests/test_dont_use.py                      |   54 +
 spyder/utils/bsdsocket.py                          |   10 +-
 spyder/utils/dochelpers.py                         |   22 +-
 spyder/utils/fixtures.py                           |    1 -
 spyder/utils/inputhooks.py                         |    4 +-
 spyder/utils/introspection/README.md               |   27 +
 spyder/utils/introspection/fallback_plugin.py      |   92 -
 spyder/utils/introspection/jedi_patch.py           |  187 +-
 spyder/utils/introspection/jedi_plugin.py          |    1 -
 spyder/utils/introspection/manager.py              |   29 +-
 spyder/utils/introspection/module_completion.py    |   41 +-
 spyder/utils/introspection/numpy_docstr.py         |   24 +-
 spyder/utils/introspection/plugin_client.py        |   44 +-
 spyder/utils/introspection/plugin_server.py        |   10 +-
 spyder/utils/introspection/test/__init__.py        |    9 -
 spyder/utils/introspection/tests/__init__.py       |    9 +
 .../introspection/tests/test_fallback_plugin.py    |  132 +
 .../{test => tests}/test_jedi_plugin.py            |    4 +-
 .../introspection/tests/test_modulecompletion.py   |   56 +
 .../introspection/tests/test_plugin_client.py      |   42 +
 .../introspection/tests/test_plugin_server.py      |   29 +
 .../{test => tests}/test_rope_plugin.py            |    0
 spyder/utils/introspection/tests/test_utils.py     |   32 +
 spyder/utils/introspection/utils.py                |   11 -
 spyder/utils/iofuncs.py                            |   14 +-
 spyder/utils/ipython/start_kernel.py               |   48 +-
 spyder/utils/misc.py                               |   19 +-
 spyder/utils/programs.py                           |   20 +-
 spyder/utils/site/osx_app_site.py                  |    2 +-
 spyder/utils/site/sitecustomize.py                 |   16 +-
 spyder/utils/stringmatching.py                     |    6 +-
 spyder/utils/system.py                             |   12 +-
 spyder/utils/test.py                               |   43 +
 spyder/utils/tests/__init__.py                     |    9 +
 spyder/utils/tests/data/example.R                  |    3 +
 spyder/utils/tests/data/example.c                  |   22 +
 spyder/utils/tests/data/example.cpp                |   74 +
 spyder/utils/tests/data/example.java               |   13 +
 spyder/utils/tests/data/example.md                 |   41 +
 spyder/utils/tests/test_bsdsocket.py               |   56 +
 spyder/utils/tests/test_codeanalysis.py            |   37 +
 spyder/utils/tests/test_dochelpers.py              |   91 +
 spyder/utils/tests/test_encoding.py                |   38 +
 spyder/utils/tests/test_environ.py                 |   45 +
 spyder/utils/tests/test_get_words.py               |  106 +
 spyder/utils/tests/test_iofuncs.py                 |   98 +
 spyder/utils/tests/test_misc.py                    |   39 +
 spyder/utils/tests/test_programs.py                |  100 +
 spyder/utils/tests/test_sourcecode.py              |  106 +
 spyder/utils/tests/test_stringmatching.py          |  220 ++
 spyder/utils/tests/test_syntaxhighlighters.py      |   61 +
 spyder/utils/tests/test_system.py                  |   31 +
 spyder/utils/vcs.py                                |    9 +-
 spyder/widgets/calltip.py                          |    5 +
 spyder/widgets/editor.py                           |    2 +-
 spyder/widgets/externalshell/pythonshell.py        |    7 +-
 spyder/widgets/fileswitcher.py                     |   47 +-
 spyder/widgets/formlayout.py                       |   20 +-
 spyder/widgets/ipythonconsole/client.py            |   84 +-
 spyder/widgets/ipythonconsole/debugging.py         |   41 +-
 spyder/widgets/ipythonconsole/shell.py             |   36 +-
 spyder/widgets/mixins.py                           |    6 +-
 spyder/widgets/pathmanager.py                      |    2 +-
 spyder/widgets/projects/configdialog.py            |    4 +-
 spyder/widgets/projects/explorer.py                |    4 +-
 spyder/widgets/projects/tests/__init__.py          |    9 +
 spyder/widgets/projects/tests/test_configdialog.py |   40 +
 .../projects/tests/test_project_explorer.py        |   33 +
 .../widgets/projects/tests/test_projectdialog.py   |   32 +
 spyder/widgets/shell.py                            |   11 +-
 spyder/widgets/sourcecode/base.py                  |    2 +-
 spyder/widgets/sourcecode/tests/__init__.py        |    9 +
 spyder/widgets/sourcecode/tests/test_autocolon.py  |  102 +
 spyder/widgets/sourcecode/tests/test_autoindent.py |  228 ++
 spyder/widgets/tests/__init__.py                   |    9 +
 spyder/widgets/tests/test_array_builder.py         |  174 ++
 spyder/widgets/tests/test_browser.py               |   34 +
 .../widgets/tests/test_codeeditor_upper_lower.py   |   57 +
 spyder/widgets/tests/test_dependencies.py          |   38 +
 spyder/widgets/tests/test_editor.py                |   79 +
 spyder/widgets/tests/test_explorer.py              |   47 +
 spyder/widgets/tests/test_findinfiles.py           |   33 +
 spyder/widgets/tests/test_helperwidgets.py         |   41 +
 spyder/widgets/tests/test_pathmanager.py           |   36 +
 spyder/widgets/tests/test_pydocgui.py              |   31 +
 spyder/widgets/tests/test_status.py                |   45 +
 spyder/widgets/variableexplorer/arrayeditor.py     |    2 +-
 spyder/widgets/variableexplorer/importwizard.py    |    4 +-
 spyder/widgets/variableexplorer/objecteditor.py    |   10 +-
 spyder/widgets/variableexplorer/tests/__init__.py  |    9 +
 .../widgets/variableexplorer/tests/issue_2514.csv  |    3 +
 .../widgets/variableexplorer/tests/issue_3896.csv  |    2 +
 .../variableexplorer/tests/test_arrayeditor.py     |  102 +
 .../tests/test_collectioneditor.py                 |   99 +
 .../variableexplorer/tests/test_dataframeeditor.py |  232 ++
 .../variableexplorer/tests/test_importwizard.py    |   33 +
 .../tests/test_namespacebrowser.py                 |   32 +
 .../variableexplorer/tests/test_texteditor.py      |   36 +
 .../widgets/variableexplorer/tests/test_utils.py   |   33 +
 spyder/widgets/variableexplorer/utils.py           |    2 +-
 spyder/workers/updates.py                          |    9 +-
 spyder_breakpoints/locale/breakpoints.pot          |    2 +-
 .../locale/es/LC_MESSAGES/breakpoints.mo           |  Bin 772 -> 772 bytes
 .../locale/es/LC_MESSAGES/breakpoints.po           |    2 +-
 .../locale/fr/LC_MESSAGES/breakpoints.mo           |  Bin 835 -> 835 bytes
 .../locale/fr/LC_MESSAGES/breakpoints.po           |    2 +-
 .../locale/ja/LC_MESSAGES/breakpoints.mo           |  Bin 0 -> 955 bytes
 .../locale/ja/LC_MESSAGES/breakpoints.po           |   52 +
 .../locale/pt_BR/LC_MESSAGES/breakpoints.mo        |  Bin 863 -> 863 bytes
 .../locale/pt_BR/LC_MESSAGES/breakpoints.po        |    2 +-
 .../locale/ru/LC_MESSAGES/breakpoints.mo           |  Bin 1067 -> 1067 bytes
 .../locale/ru/LC_MESSAGES/breakpoints.po           |    2 +-
 spyder_profiler/locale/es/LC_MESSAGES/profiler.mo  |  Bin 794 -> 794 bytes
 spyder_profiler/locale/es/LC_MESSAGES/profiler.po  |    2 +-
 spyder_profiler/locale/fr/LC_MESSAGES/profiler.mo  |  Bin 2342 -> 2342 bytes
 spyder_profiler/locale/fr/LC_MESSAGES/profiler.po  |    2 +-
 spyder_profiler/locale/ja/LC_MESSAGES/profiler.mo  |  Bin 0 -> 3398 bytes
 .../locale/{pt_BR => ja}/LC_MESSAGES/profiler.po   |  101 +-
 spyder_profiler/locale/profiler.pot                |    2 +-
 .../locale/pt_BR/LC_MESSAGES/profiler.mo           |  Bin 2937 -> 2937 bytes
 .../locale/pt_BR/LC_MESSAGES/profiler.po           |    2 +-
 spyder_profiler/locale/ru/LC_MESSAGES/profiler.mo  |  Bin 3935 -> 3935 bytes
 spyder_profiler/locale/ru/LC_MESSAGES/profiler.po  |    2 +-
 spyder_pylint/locale/es/LC_MESSAGES/pylint.mo      |  Bin 1137 -> 1137 bytes
 spyder_pylint/locale/es/LC_MESSAGES/pylint.po      |    2 +-
 spyder_pylint/locale/fr/LC_MESSAGES/pylint.mo      |  Bin 2594 -> 2594 bytes
 spyder_pylint/locale/fr/LC_MESSAGES/pylint.po      |    2 +-
 spyder_pylint/locale/ja/LC_MESSAGES/pylint.mo      |  Bin 0 -> 2706 bytes
 .../locale/{es => ja}/LC_MESSAGES/pylint.po        |   99 +-
 spyder_pylint/locale/pt_BR/LC_MESSAGES/pylint.mo   |  Bin 2607 -> 2607 bytes
 spyder_pylint/locale/pt_BR/LC_MESSAGES/pylint.po   |    2 +-
 spyder_pylint/locale/pylint.pot                    |    2 +-
 spyder_pylint/locale/ru/LC_MESSAGES/pylint.mo      |  Bin 3189 -> 3189 bytes
 spyder_pylint/locale/ru/LC_MESSAGES/pylint.po      |    2 +-
 177 files changed, 10447 insertions(+), 3499 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/spyder.git



More information about the debian-science-commits mailing list