[Python-modules-commits] [rope] branch master updated (9f7e74c -> 9c4e552)

Arnaud Fontaine arnau at moszumanska.debian.org
Thu Jul 20 01:27:16 UTC 2017


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

arnau pushed a change to branch master
in repository rope.

      from  9f7e74c   Upload 0.10.3-1 to unstable.
      adds  78f7d39   record new upstream branch created by importing rope_0.10.5.orig.tar.gz
      adds  0d2c73d   Import rope_0.10.5.orig.tar.gz
      adds  da4b327   Mitigations for CVE-2014-3539 from the upstream author personal repository (https://github.com/mcepl/rope):
      adds  eab3579   merge patched-debian-experimental into debian-experimental
      adds  2d9fd45   New upstream version 0.10.5
      adds  919192b   Build a python3 version using pybuild. Closes: #755911.
      adds  d61989c   Add basic autodep8 test
      adds  973fde0   d/copyright: Update Homepage field.
      adds  29476b7   d/copyright: Copyright information were missing.
      adds  44e6e99   d/copyright: Update Debian packaging copyright years.
      adds  5795bf1   Upload 0.10.5-1 to experimental (freeze).
       new  9c4e552   Upload to unstable.

The 1 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:
 PKG-INFO                                           |  20 +-
 README.rst                                         |  14 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  22 ++
 debian/control                                     |  32 +-
 debian/copyright                                   |   8 +-
 debian/patches/CVE-2014-3539.patch                 |  10 +-
 debian/rules                                       |   7 +-
 debian/tests/control                               |   6 +
 docs/overview.rst                                  | 123 +++++++
 docs/rope.rst                                      |   1 +
 PKG-INFO => rope.egg-info/PKG-INFO                 |  20 +-
 rope.egg-info/SOURCES.txt                          | 141 ++++++++
 rope.egg-info/dependency_links.txt                 |   1 +
 rope.egg-info/top_level.txt                        |   1 +
 rope/__init__.py                                   |   3 +-
 rope/base/astutils.py                              |   3 +
 rope/base/builtins.py                              |  24 +-
 rope/base/codeanalyze.py                           |  32 +-
 rope/base/default_config.py                        |  23 +-
 rope/base/evaluate.py                              |   7 +-
 rope/base/fscommands.py                            |  21 +-
 rope/base/oi/doa.py                                |   4 +-
 rope/base/oi/runmod.py                             |  29 +-
 rope/base/oi/soi.py                                |  31 +-
 rope/base/oi/type_hinting/__init__.py              |   0
 rope/base/oi/type_hinting/evaluate.py              | 353 +++++++++++++++++++
 rope/base/oi/type_hinting/factory.py               |  70 ++++
 rope/base/oi/type_hinting/interfaces.py            |  25 ++
 rope/base/oi/type_hinting/providers/__init__.py    |   0
 rope/base/oi/type_hinting/providers/composite.py   |  59 ++++
 rope/base/oi/type_hinting/providers/docstrings.py  | 193 ++++++++++
 rope/base/oi/type_hinting/providers/inheritance.py |  66 ++++
 rope/base/oi/type_hinting/providers/interfaces.py  |  37 ++
 .../oi/type_hinting/providers/numpydocstrings.py   |  41 +++
 .../providers/pep0484_type_comments.py             |  42 +++
 rope/base/oi/type_hinting/resolvers/__init__.py    |   0
 rope/base/oi/type_hinting/resolvers/composite.py   |  22 ++
 rope/base/oi/type_hinting/resolvers/interfaces.py  |  10 +
 rope/base/oi/type_hinting/resolvers/types.py       |  16 +
 rope/base/oi/type_hinting/utils.py                 | 136 ++++++++
 rope/base/project.py                               |  15 +-
 rope/base/pyobjects.py                             |   2 +-
 rope/base/pyobjectsdef.py                          |  47 ++-
 rope/base/stdmods.py                               |  25 +-
 rope/base/{utils.py => utils/__init__.py}          |  19 +-
 rope/base/utils/datastructures.py                  |  67 ++++
 rope/base/utils/pycompat.py                        |  45 +++
 rope/contrib/finderrors.py                         |   2 +-
 rope/contrib/fixsyntax.py                          |   2 +-
 rope/refactor/extract.py                           |  28 +-
 rope/refactor/importutils/__init__.py              |   9 +-
 rope/refactor/importutils/module_imports.py        |  81 +++--
 rope/refactor/move.py                              | 140 ++++++--
 rope/refactor/occurrences.py                       |  20 +-
 rope/refactor/patchedast.py                        | 105 ++++--
 rope/refactor/suites.py                            |  21 +-
 ropetest/__init__.py                               |   7 +-
 ropetest/advanced_oi_test.py                       |  14 +-
 ropetest/builtinstest.py                           |   5 +-
 ropetest/codeanalyzetest.py                        |  30 +-
 ropetest/contrib/__init__.py                       |   5 +-
 ropetest/contrib/autoimporttest.py                 |   5 +-
 ropetest/contrib/changestacktest.py                |   6 +-
 ropetest/contrib/codeassisttest.py                 |   6 +-
 ropetest/contrib/finderrorstest.py                 |   6 +-
 ropetest/contrib/fixmodnamestest.py                |   6 +-
 ropetest/objectdbtest.py                           |   6 +-
 ropetest/objectinfertest.py                        |   9 +-
 ropetest/projecttest.py                            |  18 +-
 ropetest/pycoretest.py                             |  33 +-
 ropetest/pyscopestest.py                           |   5 +-
 ropetest/refactor/extracttest.py                   |  59 +++-
 ropetest/refactor/importutilstest.py               |  76 +++-
 ropetest/refactor/movetest.py                      | 123 ++++++-
 ropetest/refactor/multiprojecttest.py              |  10 +-
 ropetest/refactor/patchedasttest.py                | 168 ++++++++-
 ropetest/refactor/renametest.py                    |   5 +-
 ropetest/refactor/restructuretest.py               |   5 +-
 ropetest/refactor/similarfindertest.py             |   9 +-
 ropetest/refactor/suitestest.py                    |   5 +-
 ropetest/runmodtest.py                             |   8 +-
 ropetest/simplifytest.py                           |   5 +-
 ropetest/testutils.py                              |   9 +-
 ropetest/type_hinting_test.py                      | 387 +++++++++++++++++++++
 setup.cfg                                          |   5 +
 setup.py                                           |  33 +-
 87 files changed, 3028 insertions(+), 335 deletions(-)
 create mode 100644 debian/tests/control
 copy PKG-INFO => rope.egg-info/PKG-INFO (63%)
 create mode 100644 rope.egg-info/SOURCES.txt
 create mode 100644 rope.egg-info/dependency_links.txt
 create mode 100644 rope.egg-info/top_level.txt
 create mode 100644 rope/base/oi/type_hinting/__init__.py
 create mode 100644 rope/base/oi/type_hinting/evaluate.py
 create mode 100644 rope/base/oi/type_hinting/factory.py
 create mode 100644 rope/base/oi/type_hinting/interfaces.py
 create mode 100644 rope/base/oi/type_hinting/providers/__init__.py
 create mode 100644 rope/base/oi/type_hinting/providers/composite.py
 create mode 100644 rope/base/oi/type_hinting/providers/docstrings.py
 create mode 100644 rope/base/oi/type_hinting/providers/inheritance.py
 create mode 100644 rope/base/oi/type_hinting/providers/interfaces.py
 create mode 100644 rope/base/oi/type_hinting/providers/numpydocstrings.py
 create mode 100644 rope/base/oi/type_hinting/providers/pep0484_type_comments.py
 create mode 100644 rope/base/oi/type_hinting/resolvers/__init__.py
 create mode 100644 rope/base/oi/type_hinting/resolvers/composite.py
 create mode 100644 rope/base/oi/type_hinting/resolvers/interfaces.py
 create mode 100644 rope/base/oi/type_hinting/resolvers/types.py
 create mode 100644 rope/base/oi/type_hinting/utils.py
 rename rope/base/{utils.py => utils/__init__.py} (80%)
 create mode 100644 rope/base/utils/datastructures.py
 create mode 100644 rope/base/utils/pycompat.py
 create mode 100644 ropetest/type_hinting_test.py
 create mode 100644 setup.cfg

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



More information about the Python-modules-commits mailing list