[Python-modules-commits] [python3-proselint] branch master updated (fb42353 -> ce6b1a5)

Víctor Cuadrado Juan viccuad-guest at moszumanska.debian.org
Sun Nov 6 17:52:06 UTC 2016


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

viccuad-guest pushed a change to branch master
in repository python3-proselint.

      from  fb42353   add git-dpm tag config
       new  aa83769   record new upstream branch created by importing python3-proselint_0.7.0.orig.tar.gz
       new  9431fd0   Import python3-proselint_0.7.0.orig.tar.gz
       new  dc12bee   Remove `--debug` clearcache functionality
       new  f2975c5   merge patched into master
       new  9bbb578   Update d/proselint.1 manpage for v0.7.0
       new  5b67f57   Add TODO.Debian future tasks
       new  ce6b1a5   Update d/changelog

The 7 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                                           |   4 +-
 README.md                                          |  70 ++--
 debian/.git-dpm                                    |  14 +-
 debian/TODO.Debian                                 |   6 +
 debian/changelog                                   |  13 +
 ...001-Remove-debug-clearcache-functionality.patch |  32 +-
 ...02-Make-proselint-work-on-read-only-files.patch |  25 --
 debian/patches/series                              |   1 -
 debian/proselint.1                                 |  50 ++-
 proselint.egg-info/PKG-INFO                        |   4 +-
 proselint.egg-info/SOURCES.txt                     |  28 +-
 proselint.egg-info/pbr.json                        |   2 +-
 proselint/.proselintrc                             |   2 +-
 proselint/__init__.py                              |   3 +
 proselint/checks/archaism/misc.py                  |   2 +-
 proselint/checks/consistency/spelling.py           |   1 +
 proselint/checks/corporate_speak/misc.py           |   2 +-
 proselint/checks/cursing/filth.py                  |   2 +-
 proselint/checks/cursing/nfl.py                    |   2 +-
 proselint/checks/cursing/nword.py                  |   2 +-
 proselint/checks/hedging/misc.py                   |   4 +-
 proselint/checks/lexical_illusions/misc.py         |   2 +-
 proselint/checks/lgbtq/__init__.py                 |   1 +
 proselint/checks/lgbtq/offensive_terms.py          |  41 +++
 proselint/checks/lgbtq/terms.py                    |  39 +++
 proselint/checks/links/broken.py                   |   4 +-
 proselint/checks/misc/apologizing.py               |   4 +-
 proselint/checks/misc/composition.py               |   7 +-
 proselint/checks/misc/greylist.py                  |   8 +-
 proselint/checks/misc/metaconcepts.py              |   4 +-
 .../checks/misc/{narcisissm.py => narcissism.py}   |  14 +-
 proselint/checks/misc/phrasal_adjectives.py        |   2 +
 proselint/checks/misc/scare_quotes.py              |   4 +-
 proselint/checks/misc/tense_present.py             |   7 +-
 proselint/checks/misc/usage.py                     |   6 +-
 proselint/checks/redundancy/misc.py                | 358 +++++++++++++++++++++
 proselint/checks/redundancy/ras_syndrome.py        |   3 +
 proselint/checks/sexism/misc.py                    |   2 +-
 proselint/checks/terms/venery.py                   |   1 +
 proselint/checks/typography/diacritical_marks.py   |   2 +-
 proselint/checks/typography/exclamation.py         |   4 +-
 proselint/checks/uncomparables/misc.py             |   7 +-
 proselint/command_line.py                          | 152 ++-------
 proselint/score.py                                 |   5 +-
 proselint/tools.py                                 | 172 ++++++++--
 proselint/version.py                               |   2 +-
 setup.cfg                                          |   4 +-
 tests/_test_version.py                             |   2 +-
 tests/test_annotations.py                          |  23 ++
 tests/test_archaism.py                             |  23 ++
 tests/test_cliches.py                              |  46 +++
 tests/test_consistency_check.py                    |  32 ++
 tests/test_consistency_spacing.py                  |  24 ++
 tests/test_consistency_spelling.py                 |  24 ++
 tests/test_corporate_speak.py                      |  23 ++
 tests/test_cursing_filth.py                        |  22 ++
 tests/test_cursing_nfl.py                          |  22 ++
 tests/test_cursing_nword.py                        |  22 ++
 tests/test_dates_times_am_pm.py                    |  73 +++++
 tests/test_dates_times_dates.py                    |  87 +++++
 tests/test_demo.py                                 |   2 +-
 tests/test_existence_check.py                      |  52 +++
 tests/test_exit_codes.py                           |   4 +-
 tests/test_garner_dates.py                         |   2 +-
 tests/test_hedging.py                              |  22 ++
 tests/test_hyperbole.py                            |  22 ++
 tests/test_illegal_chars.py                        |  29 ++
 tests/test_jargon.py                               |  22 ++
 tests/test_junge_but.py                            |   2 +-
 tests/test_leonard.py                              |  27 ++
 tests/test_lexical_illusions.py                    |  22 ++
 tests/test_lgbtq_offensive_terms.py                |  23 ++
 tests/test_lgbtq_terms.py                          |  31 ++
 tests/test_preferred_forms_check.py                |  40 +++
 tests/test_tools.py                                |  35 ++
 75 files changed, 1575 insertions(+), 307 deletions(-)
 create mode 100644 debian/TODO.Debian
 delete mode 100644 debian/patches/0002-Make-proselint-work-on-read-only-files.patch
 create mode 100644 proselint/checks/lgbtq/__init__.py
 create mode 100644 proselint/checks/lgbtq/offensive_terms.py
 create mode 100644 proselint/checks/lgbtq/terms.py
 rename proselint/checks/misc/{narcisissm.py => narcissism.py} (58%)
 create mode 100644 tests/test_annotations.py
 create mode 100644 tests/test_archaism.py
 create mode 100644 tests/test_cliches.py
 create mode 100644 tests/test_consistency_check.py
 create mode 100644 tests/test_consistency_spacing.py
 create mode 100644 tests/test_consistency_spelling.py
 create mode 100644 tests/test_corporate_speak.py
 create mode 100644 tests/test_cursing_filth.py
 create mode 100644 tests/test_cursing_nfl.py
 create mode 100644 tests/test_cursing_nword.py
 create mode 100644 tests/test_dates_times_am_pm.py
 create mode 100644 tests/test_dates_times_dates.py
 create mode 100644 tests/test_existence_check.py
 create mode 100644 tests/test_hedging.py
 create mode 100644 tests/test_hyperbole.py
 create mode 100644 tests/test_illegal_chars.py
 create mode 100644 tests/test_jargon.py
 create mode 100644 tests/test_leonard.py
 create mode 100644 tests/test_lexical_illusions.py
 create mode 100644 tests/test_lgbtq_offensive_terms.py
 create mode 100644 tests/test_lgbtq_terms.py
 create mode 100644 tests/test_preferred_forms_check.py
 create mode 100644 tests/test_tools.py

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



More information about the Python-modules-commits mailing list