[spyder] 02/03: Merge tag 'upstream/3.0.0_b5+dfsg1' into experimental

Frédéric-Emmanuel Picca picca at moszumanska.debian.org
Tue Aug 23 21:54:40 UTC 2016


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

picca pushed a commit to branch experimental
in repository spyder.

commit 216a00243aee1cbbe411af7a710e91649a17124a
Merge: 9992f59 dea7e54
Author: Picca Frédéric-Emmanuel <picca at debian.org>
Date:   Tue Aug 23 21:59:58 2016 +0200

    Merge tag 'upstream/3.0.0_b5+dfsg1' into experimental
    
    Upstream version 3.0.0~b5+dfsg1

 MANIFEST.in                                        |    4 +-
 PKG-INFO                                           |    4 +-
 README.md                                          |    6 +-
 setup.py                                           |    9 +-
 spyder_breakpoints/__init__.py                     |    6 +
 spyder_breakpoints/breakpoints.py                  |  104 +
 spyder_breakpoints/locale/breakpoints.pot          |   49 +
 .../locale/es/LC_MESSAGES/breakpoints.mo           |  Bin 0 -> 772 bytes
 .../locale/es/LC_MESSAGES/breakpoints.po           |   50 +
 .../locale/fr/LC_MESSAGES/breakpoints.mo           |  Bin 0 -> 835 bytes
 .../locale/fr/LC_MESSAGES/breakpoints.po           |   49 +
 .../locale/pt_BR/LC_MESSAGES/breakpoints.mo        |  Bin 0 -> 863 bytes
 .../locale/pt_BR/LC_MESSAGES/breakpoints.po        |   49 +
 .../locale/ru/LC_MESSAGES/breakpoints.mo           |  Bin 0 -> 1068 bytes
 .../locale/ru/LC_MESSAGES/breakpoints.po           |   51 +
 spyder_breakpoints/widgets/__init__.py             |    0
 spyder_breakpoints/widgets/breakpointsgui.py       |  272 +++
 spyder_io_dcm/__init__.py                          |    9 +
 spyder_io_dcm/dcm.py                               |   26 +
 spyder_io_hdf5/__init__.py                         |    9 +
 spyder_io_hdf5/hdf5.py                             |   78 +
 spyder_profiler/__init__.py                        |    6 +
 spyder_profiler/images/profiler.png                |  Bin 0 -> 1454 bytes
 spyder_profiler/locale/es/LC_MESSAGES/profiler.mo  |  Bin 0 -> 794 bytes
 spyder_profiler/locale/es/LC_MESSAGES/profiler.po  |  185 ++
 spyder_profiler/locale/fr/LC_MESSAGES/profiler.mo  |  Bin 0 -> 2736 bytes
 spyder_profiler/locale/fr/LC_MESSAGES/profiler.po  |  180 ++
 spyder_profiler/locale/profiler.pot                |  180 ++
 .../locale/pt_BR/LC_MESSAGES/profiler.mo           |  Bin 0 -> 2317 bytes
 .../locale/pt_BR/LC_MESSAGES/profiler.po           |  181 ++
 spyder_profiler/locale/ru/LC_MESSAGES/profiler.mo  |  Bin 0 -> 3844 bytes
 spyder_profiler/locale/ru/LC_MESSAGES/profiler.po  |  184 ++
 spyder_profiler/profiler.py                        |  147 ++
 spyder_profiler/widgets/__init__.py                |    0
 spyder_profiler/widgets/profilergui.py             |  691 ++++++
 spyder_pylint/__init__.py                          |    6 +
 spyder_pylint/images/pylint.png                    |  Bin 0 -> 1196 bytes
 spyder_pylint/locale/es/LC_MESSAGES/pylint.mo      |  Bin 0 -> 1137 bytes
 spyder_pylint/locale/es/LC_MESSAGES/pylint.po      |  165 ++
 spyder_pylint/locale/fr/LC_MESSAGES/pylint.mo      |  Bin 0 -> 2427 bytes
 spyder_pylint/locale/fr/LC_MESSAGES/pylint.po      |  162 ++
 spyder_pylint/locale/pt_BR/LC_MESSAGES/pylint.mo   |  Bin 0 -> 2607 bytes
 spyder_pylint/locale/pt_BR/LC_MESSAGES/pylint.po   |  159 ++
 spyder_pylint/locale/pylint.pot                    |  157 ++
 spyder_pylint/locale/ru/LC_MESSAGES/pylint.mo      |  Bin 0 -> 3190 bytes
 spyder_pylint/locale/ru/LC_MESSAGES/pylint.po      |  160 ++
 spyder_pylint/pylint.py                            |  180 ++
 spyder_pylint/widgets/__init__.py                  |    0
 spyder_pylint/widgets/pylintgui.py                 |  515 +++++
 spyderlib/__init__.py                              |    2 +-
 spyderlib/app/cli_options.py                       |    2 +-
 spyderlib/app/spyder.py                            |   43 +-
 spyderlib/app/start.py                             |    6 +-
 spyderlib/app/tour.py                              |    5 +-
 spyderlib/config/base.py                           |   54 +-
 spyderlib/config/main.py                           |   17 +-
 spyderlib/config/user.py                           |   57 +-
 spyderlib/config/utils.py                          |   18 +-
 spyderlib/locale/ja/LC_MESSAGES/spyderlib.mo       |  Bin 0 -> 120090 bytes
 .../{spyderlib.pot => ja/LC_MESSAGES/spyderlib.po} | 2374 +++++++++++---------
 spyderlib/locale/spyderlib.pot                     |   14 +-
 spyderlib/otherplugins.py                          |    5 +-
 spyderlib/plugins/editor.py                        |    5 +-
 spyderlib/plugins/findinfiles.py                   |   38 +-
 spyderlib/utils/help/js/fix_image_paths.js         |    3 +-
 spyderlib/utils/help/sphinxify.py                  |    9 +-
 spyderlib/utils/introspection/plugin_client.py     |    2 +-
 spyderlib/utils/iofuncs.py                         |   24 +-
 spyderlib/widgets/editor.py                        |   50 +-
 spyderlib/widgets/fileswitcher.py                  |    3 +
 spyderlib/widgets/sourcecode/codeeditor.py         |  110 +-
 spyderlib/widgets/tests/test_editor.py             |   89 +
 .../widgets/variableexplorer/dataframeeditor.py    |  117 +-
 spyderlib/widgets/variableexplorer/utils.py        |    2 +-
 74 files changed, 5794 insertions(+), 1288 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