[Python-modules-commits] [astroid] branch master updated (2b2bc73 -> 04ef22f)

Sandro Tosi morph at moszumanska.debian.org
Fri Dec 1 00:33:20 UTC 2017


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

morph pushed a change to branch master
in repository astroid.

      from  2b2bc73   releasing package astroid version 1.4.9-1
       new  91aee8e   Import astroid_1.5.3.orig.tar.gz
       new  bc5c70a   record new upstream branch created by importing astroid_1.5.3.orig.tar.gz and merge it
       new  cc7a6b0   New upstream release; Closes: #868819
       new  ddb7923   bump Standards-Version to 4.1.2 (no changes needed)
       new  00c877e   add singledispatch, enum34 to b-d and depends, patch by Michael Hudson-Doyle
       new  04ef22f   releasing package astroid version 1.5.3-1

The 6 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:
 ChangeLog                                          |  406 ++-
 PKG-INFO                                           |   33 +-
 README.rst                                         |   29 +-
 astroid.egg-info/PKG-INFO                          |   33 +-
 astroid.egg-info/SOURCES.txt                       |   64 +-
 astroid.egg-info/requires.txt                      |    9 +-
 astroid/__init__.py                                |   61 +-
 astroid/__pkginfo__.py                             |   59 +-
 astroid/arguments.py                               |  120 +-
 astroid/as_string.py                               |  173 +-
 astroid/astpeephole.py                             |   28 +-
 astroid/bases.py                                   |  636 ++---
 astroid/brain/brain_builtin_inference.py           |  230 +-
 astroid/brain/brain_collections.py                 |   43 +
 astroid/brain/brain_dateutil.py                    |   36 +-
 astroid/brain/brain_fstrings.py                    |   61 +
 astroid/brain/brain_functools.py                   |   75 +
 astroid/brain/brain_gi.py                          |   18 +-
 astroid/brain/brain_hashlib.py                     |   40 +
 astroid/brain/brain_io.py                          |   43 +
 astroid/brain/brain_mechanize.py                   |    5 +
 astroid/brain/brain_multiprocessing.py             |  104 +
 astroid/brain/brain_namedtuple_enum.py             |  233 ++
 astroid/brain/brain_nose.py                        |   24 +-
 astroid/brain/brain_numpy.py                       |   22 +-
 astroid/brain/brain_pkg_resources.py               |   70 +
 astroid/brain/brain_pytest.py                      |    6 +
 astroid/brain/brain_qt.py                          |   21 +-
 astroid/brain/brain_re.py                          |   34 +
 astroid/brain/brain_six.py                         |   30 +-
 astroid/brain/brain_ssl.py                         |    5 +
 astroid/brain/brain_stdlib.py                      |  473 ----
 astroid/brain/brain_subprocess.py                  |   94 +
 astroid/brain/brain_threading.py                   |   26 +
 astroid/brain/brain_typing.py                      |   89 +
 astroid/builder.py                                 |  270 +-
 astroid/context.py                                 |   37 +-
 astroid/decorators.py                              |  116 +-
 astroid/exceptions.py                              |  216 +-
 astroid/helpers.py                                 |  173 ++
 astroid/inference.py                               |  719 ++++-
 astroid/{tests => interpreter}/__init__.py         |    0
 astroid/{tests => interpreter/_import}/__init__.py |    0
 astroid/interpreter/_import/spec.py                |  287 ++
 astroid/interpreter/_import/util.py                |   12 +
 astroid/interpreter/dunder_lookup.py               |   81 +
 astroid/interpreter/objectmodel.py                 |  632 +++++
 astroid/manager.py                                 |  143 +-
 astroid/mixins.py                                  |   42 +-
 astroid/modutils.py                                |  322 +--
 astroid/node_classes.py                            | 1365 +++++++--
 astroid/nodes.py                                   |   32 +-
 astroid/objects.py                                 |  206 +-
 astroid/protocols.py                               |  490 ++--
 astroid/raw_building.py                            |  212 +-
 astroid/rebuilder.py                               | 1219 ++++----
 astroid/scoped_nodes.py                            |  888 +++---
 astroid/test_utils.py                              |  208 +-
 astroid/tests/resources.py                         |   27 +-
 .../testdata/python2/data/clientmodule_test.py     |   32 -
 .../namespace_pep_420/submodule.py                 |    1 +
 .../python2/data/foogle/fax}/__init__.py           |    0
 .../tests/testdata/python2/data/foogle/fax/a.py    |    1 +
 .../testdata/python2/data/invalid_encoding.py      |    1 +
 .../python2/data/namespace_pep_420/module.py       |    1 +
 astroid/tests/testdata/python2/data/notall.py      |    2 +-
 .../python2/data/notamodule/file.py}               |    0
 .../data/path_pkg_resources_1/package/__init__.py  |    1 +
 .../data/path_pkg_resources_1/package/foo.py}      |    0
 .../data/path_pkg_resources_2/package/__init__.py  |    1 +
 .../data/path_pkg_resources_2/package/bar.py}      |    0
 .../data/path_pkg_resources_3/package/__init__.py  |    1 +
 .../data/path_pkg_resources_3/package/baz.py}      |    0
 .../data/path_pkgutil_1/package/__init__.py        |    2 +
 .../python2/data/path_pkgutil_1/package/foo.py}    |    0
 .../data/path_pkgutil_2/package/__init__.py        |    2 +
 .../python2/data/path_pkgutil_2/package/bar.py}    |    0
 .../data/path_pkgutil_3/package/__init__.py        |    2 +
 .../python2/data/path_pkgutil_3/package/baz.py}    |    0
 .../testdata/python2/data/suppliermodule_test.py   |   13 -
 .../python2/data/tmp__init__.py}                   |    0
 .../testdata/python3/data/clientmodule_test.py     |   32 -
 .../namespace_pep_420/submodule.py                 |    1 +
 .../python3/data/foogle/fax}/__init__.py           |    0
 .../tests/testdata/python3/data/foogle/fax/a.py    |    1 +
 .../testdata/python3/data/invalid_encoding.py      |    1 +
 astroid/tests/testdata/python3/data/module2.py     |    1 +
 .../python3/data/namespace_pep_420/module.py       |    1 +
 .../python3/data/notamodule/file.py}               |    0
 .../data/path_pkg_resources_1/package/__init__.py  |    1 +
 .../data/path_pkg_resources_1/package/foo.py}      |    0
 .../data/path_pkg_resources_2/package/__init__.py  |    1 +
 .../data/path_pkg_resources_2/package/bar.py}      |    0
 .../data/path_pkg_resources_3/package/__init__.py  |    1 +
 .../data/path_pkg_resources_3/package/baz.py}      |    0
 .../data/path_pkgutil_1/package/__init__.py        |    2 +
 .../python3/data/path_pkgutil_1/package/foo.py}    |    0
 .../data/path_pkgutil_2/package/__init__.py        |    2 +
 .../python3/data/path_pkgutil_2/package/bar.py}    |    0
 .../data/path_pkgutil_3/package/__init__.py        |    2 +
 .../python3/data/path_pkgutil_3/package/baz.py}    |    0
 .../testdata/python3/data/suppliermodule_test.py   |   13 -
 .../python3/data/tmp__init__.py}                   |    0
 astroid/tests/unittest_brain.py                    |  340 ++-
 astroid/tests/unittest_builder.py                  |  100 +-
 astroid/tests/unittest_helpers.py                  |  256 ++
 astroid/tests/unittest_inference.py                | 2976 +++++++++++++++++---
 astroid/tests/unittest_lookup.py                   |   50 +-
 astroid/tests/unittest_manager.py                  |  167 +-
 astroid/tests/unittest_modutils.py                 |  137 +-
 astroid/tests/unittest_nodes.py                    |  240 +-
 astroid/tests/unittest_object_model.py             |  611 ++++
 astroid/tests/unittest_objects.py                  | 1035 ++++---
 astroid/tests/unittest_peephole.py                 |   22 +-
 astroid/tests/unittest_protocols.py                |   54 +-
 astroid/tests/unittest_python3.py                  |  144 +-
 astroid/tests/unittest_raw_building.py             |   14 +-
 astroid/tests/unittest_regrtest.py                 |  153 +-
 astroid/tests/unittest_scoped_nodes.py             |  349 ++-
 astroid/tests/unittest_transforms.py               |  479 ++--
 astroid/tests/unittest_utils.py                    |   30 +-
 astroid/transforms.py                              |   26 +-
 astroid/util.py                                    |  145 +-
 debian/.git-dpm                                    |   14 +-
 debian/changelog                                   |   10 +
 debian/control                                     |    6 +-
 setup.cfg                                          |    1 -
 setup.py                                           |   25 +-
 tox.ini                                            |   76 +-
 129 files changed, 12985 insertions(+), 5724 deletions(-)
 create mode 100644 astroid/brain/brain_collections.py
 create mode 100644 astroid/brain/brain_fstrings.py
 create mode 100644 astroid/brain/brain_functools.py
 create mode 100644 astroid/brain/brain_hashlib.py
 create mode 100644 astroid/brain/brain_io.py
 create mode 100644 astroid/brain/brain_multiprocessing.py
 create mode 100644 astroid/brain/brain_namedtuple_enum.py
 create mode 100644 astroid/brain/brain_pkg_resources.py
 create mode 100644 astroid/brain/brain_re.py
 delete mode 100644 astroid/brain/brain_stdlib.py
 create mode 100644 astroid/brain/brain_subprocess.py
 create mode 100644 astroid/brain/brain_threading.py
 create mode 100644 astroid/brain/brain_typing.py
 create mode 100644 astroid/helpers.py
 copy astroid/{tests => interpreter}/__init__.py (100%)
 copy astroid/{tests => interpreter/_import}/__init__.py (100%)
 create mode 100644 astroid/interpreter/_import/spec.py
 create mode 100644 astroid/interpreter/_import/util.py
 create mode 100644 astroid/interpreter/dunder_lookup.py
 create mode 100644 astroid/interpreter/objectmodel.py
 delete mode 100644 astroid/tests/testdata/python2/data/clientmodule_test.py
 create mode 100644 astroid/tests/testdata/python2/data/contribute_to_namespace/namespace_pep_420/submodule.py
 copy astroid/tests/{ => testdata/python2/data/foogle/fax}/__init__.py (100%)
 create mode 100644 astroid/tests/testdata/python2/data/foogle/fax/a.py
 create mode 100644 astroid/tests/testdata/python2/data/invalid_encoding.py
 create mode 100644 astroid/tests/testdata/python2/data/namespace_pep_420/module.py
 copy astroid/tests/{__init__.py => testdata/python2/data/notamodule/file.py} (100%)
 create mode 100644 astroid/tests/testdata/python2/data/path_pkg_resources_1/package/__init__.py
 copy astroid/tests/{__init__.py => testdata/python2/data/path_pkg_resources_1/package/foo.py} (100%)
 create mode 100644 astroid/tests/testdata/python2/data/path_pkg_resources_2/package/__init__.py
 copy astroid/tests/{__init__.py => testdata/python2/data/path_pkg_resources_2/package/bar.py} (100%)
 create mode 100644 astroid/tests/testdata/python2/data/path_pkg_resources_3/package/__init__.py
 copy astroid/tests/{__init__.py => testdata/python2/data/path_pkg_resources_3/package/baz.py} (100%)
 create mode 100644 astroid/tests/testdata/python2/data/path_pkgutil_1/package/__init__.py
 copy astroid/tests/{__init__.py => testdata/python2/data/path_pkgutil_1/package/foo.py} (100%)
 create mode 100644 astroid/tests/testdata/python2/data/path_pkgutil_2/package/__init__.py
 copy astroid/tests/{__init__.py => testdata/python2/data/path_pkgutil_2/package/bar.py} (100%)
 create mode 100644 astroid/tests/testdata/python2/data/path_pkgutil_3/package/__init__.py
 copy astroid/tests/{__init__.py => testdata/python2/data/path_pkgutil_3/package/baz.py} (100%)
 delete mode 100644 astroid/tests/testdata/python2/data/suppliermodule_test.py
 copy astroid/tests/{__init__.py => testdata/python2/data/tmp__init__.py} (100%)
 delete mode 100644 astroid/tests/testdata/python3/data/clientmodule_test.py
 create mode 100644 astroid/tests/testdata/python3/data/contribute_to_namespace/namespace_pep_420/submodule.py
 copy astroid/tests/{ => testdata/python3/data/foogle/fax}/__init__.py (100%)
 create mode 100644 astroid/tests/testdata/python3/data/foogle/fax/a.py
 create mode 100644 astroid/tests/testdata/python3/data/invalid_encoding.py
 create mode 100644 astroid/tests/testdata/python3/data/namespace_pep_420/module.py
 copy astroid/tests/{__init__.py => testdata/python3/data/notamodule/file.py} (100%)
 create mode 100644 astroid/tests/testdata/python3/data/path_pkg_resources_1/package/__init__.py
 copy astroid/tests/{__init__.py => testdata/python3/data/path_pkg_resources_1/package/foo.py} (100%)
 create mode 100644 astroid/tests/testdata/python3/data/path_pkg_resources_2/package/__init__.py
 copy astroid/tests/{__init__.py => testdata/python3/data/path_pkg_resources_2/package/bar.py} (100%)
 create mode 100644 astroid/tests/testdata/python3/data/path_pkg_resources_3/package/__init__.py
 copy astroid/tests/{__init__.py => testdata/python3/data/path_pkg_resources_3/package/baz.py} (100%)
 create mode 100644 astroid/tests/testdata/python3/data/path_pkgutil_1/package/__init__.py
 copy astroid/tests/{__init__.py => testdata/python3/data/path_pkgutil_1/package/foo.py} (100%)
 create mode 100644 astroid/tests/testdata/python3/data/path_pkgutil_2/package/__init__.py
 copy astroid/tests/{__init__.py => testdata/python3/data/path_pkgutil_2/package/bar.py} (100%)
 create mode 100644 astroid/tests/testdata/python3/data/path_pkgutil_3/package/__init__.py
 copy astroid/tests/{__init__.py => testdata/python3/data/path_pkgutil_3/package/baz.py} (100%)
 delete mode 100644 astroid/tests/testdata/python3/data/suppliermodule_test.py
 copy astroid/tests/{__init__.py => testdata/python3/data/tmp__init__.py} (100%)
 create mode 100644 astroid/tests/unittest_helpers.py
 create mode 100644 astroid/tests/unittest_object_model.py

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



More information about the Python-modules-commits mailing list