[Python-modules-commits] [autopep8] branch master updated (0f30ed4 -> 8dad9ea)

Sylvestre Ledru sylvestre at moszumanska.debian.org
Mon Jun 19 20:48:13 UTC 2017


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

sylvestre pushed a change to branch master
in repository autopep8.

      from  0f30ed4   add the debian/ dir
       new  15850c4   New upstream version 1.3.2
       new  0e62909   Merge tag 'upstream/1.3.2'
       new  391bc86   * New upstream release * Repo moved to git * Moved to the python team umbrella * Update the min dep of pycodestyle * Vcs-Git & Vcs-Browser * Standards-Version updated 4.0.0
       new  51cc6f6   trailing space
       new  8dad9ea   Add a manpage

The 5 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:
 .gitignore                                  |   19 +
 .travis.yml                                 |   51 +
 AUTHORS.rst                                 |   24 +
 CONTRIBUTING.rst                            |   38 +
 LICENSE                                     |   23 +
 MANIFEST.in                                 |   24 +
 Makefile                                    |  131 +
 PKG-INFO                                    |  315 ---
 README.rst                                  |  290 +-
 autopep8.egg-info/PKG-INFO                  |  315 ---
 autopep8.egg-info/SOURCES.txt               |   18 -
 autopep8.egg-info/dependency_links.txt      |    1 -
 autopep8.egg-info/entry_points.txt          |    3 -
 autopep8.egg-info/not-zip-safe              |    1 -
 autopep8.egg-info/requires.txt              |    1 -
 autopep8.egg-info/top_level.txt             |    1 -
 autopep8.py                                 | 3779 +++++++++++++++++--------
 coveralls.bash                              |    8 +
 debian/changelog                            |   12 +
 debian/control                              |   10 +-
 debian/python-autopep8.manpages             |    2 +
 debian/rules                                |    7 +
 hooks/pre-push                              |   12 +
 install_hooks.bash                          |    5 +
 setup.cfg                                   |    7 +-
 setup.py                                    |   20 +-
 test/.gitignore                             |    2 +
 test/acid.py                                |  259 ++
 test/acid_pypi.py                           |  141 +
 test/example.py                             |    4 +-
 test/example_with_reduce.py                 | 2727 +++++++++++++++++++
 test/fake_configuration/.pep8               |    2 +
 test/fake_pycodestyle_configuration/tox.ini |    2 +
 test/inspect_example.py                     | 2765 +++++++++++++++++++
 test/suite/E10.py                           |   41 +
 test/suite/E11.py                           |   16 +
 test/suite/E12.py                           |  376 +++
 test/suite/E20.py                           |   55 +
 test/suite/E21.py                           |   14 +
 test/suite/E22.py                           |  152 ++
 test/suite/E23.py                           |   15 +
 test/suite/E24.py                           |   13 +
 test/suite/E25.py                           |   26 +
 test/suite/E26.py                           |   36 +
 test/suite/E27.py                           |   30 +
 test/suite/E30.py                           |  106 +
 test/suite/E30not.py                        |  134 +
 test/suite/E40.py                           |   13 +
 test/suite/E50.py                           |  104 +
 test/suite/E70.py                           |   13 +
 test/suite/E71.py                           |   41 +
 test/suite/E72.py                           |   51 +
 test/suite/W19.py                           |  145 +
 test/suite/W29.py                           |   13 +
 test/suite/W39.py                           |    9 +
 test/suite/W60.py                           |   15 +
 test/suite/latin-1.py                       |    6 +
 test/suite/long_lines.py                    |    7 +
 test/suite/noqa.py                          |   15 +
 test/suite/out/E10.py                       |   44 +
 test/suite/out/E11.py                       |   16 +
 test/suite/out/E12.py                       |  377 +++
 test/suite/out/E20.py                       |   56 +
 test/suite/out/E21.py                       |   14 +
 test/suite/out/E22.py                       |  156 ++
 test/suite/out/E23.py                       |   15 +
 test/suite/out/E24.py                       |   13 +
 test/suite/out/E25.py                       |   28 +
 test/suite/out/E26.py                       |   36 +
 test/suite/out/E27.py                       |   30 +
 test/suite/out/E30.py                       |  122 +
 test/suite/out/E30not.py                    |  141 +
 test/suite/out/E40.py                       |   14 +
 test/suite/out/E50.py                       |  106 +
 test/suite/out/E70.py                       |   17 +
 test/suite/out/E71.py                       |   41 +
 test/suite/out/E72.py                       |   51 +
 test/suite/out/W19.py                       |  151 +
 test/suite/out/W29.py                       |   17 +
 test/suite/out/W39.py                       |    9 +
 test/suite/out/W60.py                       |   15 +
 test/suite/out/latin-1.py                   |    1 +
 test/suite/out/long_lines.py                |    8 +
 test/suite/out/noqa.py                      |    1 +
 test/suite/out/python3.py                   |    1 +
 test/suite/out/utf-8-bom.py                 |    1 +
 test/suite/out/utf-8.py                     |   52 +
 test/suite/python3.py                       |    6 +
 test/suite/utf-8-bom.py                     |    6 +
 test/suite/utf-8.py                         |   52 +
 test/test_autopep8.py                       | 3939 +++++++++++++++++++++++----
 test/test_suite.py                          |  122 +
 test/vectors_example.py                     | 1063 ++++++++
 test/vim_autopep8.py                        |   55 +
 tox.ini                                     |   18 +
 update_readme.py                            |   93 +
 96 files changed, 16948 insertions(+), 2404 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 .travis.yml
 create mode 100644 AUTHORS.rst
 create mode 100644 CONTRIBUTING.rst
 create mode 100644 LICENSE
 create mode 100644 Makefile
 delete mode 100644 PKG-INFO
 delete mode 100644 autopep8.egg-info/PKG-INFO
 delete mode 100644 autopep8.egg-info/SOURCES.txt
 delete mode 100644 autopep8.egg-info/dependency_links.txt
 delete mode 100644 autopep8.egg-info/entry_points.txt
 delete mode 100644 autopep8.egg-info/not-zip-safe
 delete mode 100644 autopep8.egg-info/requires.txt
 delete mode 100644 autopep8.egg-info/top_level.txt
 create mode 100755 coveralls.bash
 create mode 100644 debian/python-autopep8.manpages
 create mode 100755 hooks/pre-push
 create mode 100755 install_hooks.bash
 create mode 100644 test/.gitignore
 create mode 100755 test/acid.py
 create mode 100755 test/acid_pypi.py
 create mode 100644 test/example_with_reduce.py
 create mode 100644 test/fake_configuration/.pep8
 create mode 100644 test/fake_pycodestyle_configuration/tox.ini
 create mode 100644 test/inspect_example.py
 create mode 100644 test/suite/E10.py
 create mode 100644 test/suite/E11.py
 create mode 100644 test/suite/E12.py
 create mode 100644 test/suite/E20.py
 create mode 100644 test/suite/E21.py
 create mode 100644 test/suite/E22.py
 create mode 100644 test/suite/E23.py
 create mode 100644 test/suite/E24.py
 create mode 100644 test/suite/E25.py
 create mode 100644 test/suite/E26.py
 create mode 100644 test/suite/E27.py
 create mode 100644 test/suite/E30.py
 create mode 100644 test/suite/E30not.py
 create mode 100644 test/suite/E40.py
 create mode 100644 test/suite/E50.py
 create mode 100644 test/suite/E70.py
 create mode 100644 test/suite/E71.py
 create mode 100644 test/suite/E72.py
 create mode 100644 test/suite/W19.py
 create mode 100644 test/suite/W29.py
 create mode 100644 test/suite/W39.py
 create mode 100644 test/suite/W60.py
 create mode 100644 test/suite/latin-1.py
 create mode 100644 test/suite/long_lines.py
 create mode 100644 test/suite/noqa.py
 create mode 100644 test/suite/out/E10.py
 create mode 100644 test/suite/out/E11.py
 create mode 100644 test/suite/out/E12.py
 create mode 100644 test/suite/out/E20.py
 create mode 100644 test/suite/out/E21.py
 create mode 100644 test/suite/out/E22.py
 create mode 100644 test/suite/out/E23.py
 create mode 100644 test/suite/out/E24.py
 create mode 100644 test/suite/out/E25.py
 create mode 100644 test/suite/out/E26.py
 create mode 100644 test/suite/out/E27.py
 create mode 100644 test/suite/out/E30.py
 create mode 100644 test/suite/out/E30not.py
 create mode 100644 test/suite/out/E40.py
 create mode 100644 test/suite/out/E50.py
 create mode 100644 test/suite/out/E70.py
 create mode 100644 test/suite/out/E71.py
 create mode 100644 test/suite/out/E72.py
 create mode 100644 test/suite/out/W19.py
 create mode 100644 test/suite/out/W29.py
 create mode 100644 test/suite/out/W39.py
 create mode 100644 test/suite/out/W60.py
 create mode 120000 test/suite/out/latin-1.py
 create mode 100644 test/suite/out/long_lines.py
 create mode 120000 test/suite/out/noqa.py
 create mode 120000 test/suite/out/python3.py
 create mode 120000 test/suite/out/utf-8-bom.py
 create mode 100644 test/suite/out/utf-8.py
 create mode 100644 test/suite/python3.py
 create mode 100644 test/suite/utf-8-bom.py
 create mode 100644 test/suite/utf-8.py
 create mode 100755 test/test_suite.py
 create mode 100644 test/vectors_example.py
 create mode 100644 test/vim_autopep8.py
 create mode 100644 tox.ini
 create mode 100755 update_readme.py

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



More information about the Python-modules-commits mailing list