[Python-modules-commits] [python-hypothesis] 03/12: record new upstream branch created by importing python-hypothesis_1.18.0.orig.tar.gz and merge it

Tristan Seligmann mithrandi at moszumanska.debian.org
Sat Jan 23 02:52:24 UTC 2016


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

mithrandi pushed a commit to branch master
in repository python-hypothesis.

commit 890cdf8d0f71e0dca3417b1a1bcd29ad0df96b90
Merge: b38575a 9cb4900
Author: Tristan Seligmann <mithrandi at debian.org>
Date:   Mon Dec 21 13:46:10 2015 +0200

    record new upstream branch created by importing python-hypothesis_1.18.0.orig.tar.gz and merge it

 .coveragerc                                        |   23 +
 .gitignore                                         |   12 +
 .travis.yml                                        |   81 +
 CONTRIBUTING.rst                                   |  156 +
 LICENSE.txt                                        |    4 +
 Makefile                                           |  181 +
 PKG-INFO                                           |   71 -
 README.rst                                         |    3 +
 appveyor.yml                                       |   64 +
 debian/.git-dpm                                    |   14 +-
 docs/_static/.empty                                |    0
 docs/changes.rst                                   | 1264 +++++
 docs/community.rst                                 |   56 +
 docs/conf.py                                       |   97 +
 docs/data.rst                                      |  491 ++
 docs/database.rst                                  |   71 +
 docs/details.rst                                   |  529 +++
 docs/development.rst                               |   30 +
 docs/django.rst                                    |  245 +
 docs/endorsements.rst                              |  117 +
 docs/examples.rst                                  |  485 ++
 docs/extras.rst                                    |  197 +
 docs/healthchecks.rst                              |   24 +
 docs/index.rst                                     |   76 +
 docs/internals.rst                                 |  287 ++
 docs/manifesto.rst                                 |   60 +
 docs/packaging.rst                                 |  103 +
 docs/quickstart.rst                                |  319 ++
 docs/settings.rst                                  |  231 +
 docs/stateful.rst                                  |  407 ++
 docs/support.rst                                   |   16 +
 docs/supported.rst                                 |   91 +
 docs/usage.rst                                     |   36 +
 src/hypothesis/version.py => examples/__init__.py  |    5 -
 examples/bintree.py                                |  619 +++
 notebooks/Designing a better simplifier.ipynb      | 4911 ++++++++++++++++++++
 scripts/basic-test.sh                              |   74 +
 .../version.py => scripts/check_encoding_header.py |   20 +-
 scripts/enforce_header.py                          |   65 +
 src/hypothesis/version.py => scripts/header.py     |    3 -
 scripts/install.ps1                                |  180 +
 scripts/install.sh                                 |  105 +
 scripts/pyenv-installer                            |   88 +
 scripts/run_with_env.cmd                           |   47 +
 setup.cfg                                          |    5 -
 setup.py                                           |   14 -
 src/hypothesis.egg-info/PKG-INFO                   |   71 -
 src/hypothesis.egg-info/SOURCES.txt                |   74 -
 src/hypothesis.egg-info/dependency_links.txt       |    1 -
 src/hypothesis.egg-info/entry_points.txt           |    3 -
 src/hypothesis.egg-info/not-zip-safe               |    1 -
 src/hypothesis.egg-info/requires.txt               |   30 -
 src/hypothesis.egg-info/top_level.txt              |    1 -
 src/hypothesis/control.py                          |    2 +
 src/hypothesis/core.py                             |   47 +-
 src/hypothesis/internal/charstree.py               |   20 +-
 src/hypothesis/searchstrategy/morphers.py          |  247 +-
 src/hypothesis/searchstrategy/numbers.py           |   77 +-
 src/hypothesis/strategies.py                       |   90 +-
 src/hypothesis/version.py                          |    2 +-
 src/hypothesis/version.py => tests/__init__.py     |    5 -
 tests/common/__init__.py                           |  121 +
 tests/common/basic.py                              |   48 +
 tests/common/utils.py                              |   63 +
 src/hypothesis/version.py => tests/conftest.py     |   29 +-
 .../version.py => tests/cover/__init__.py          |    5 -
 tests/cover/test_bad_repr.py                       |   82 +
 tests/cover/test_basic_strategy.py                 |  217 +
 tests/cover/test_charstree.py                      |   90 +
 tests/cover/test_choices.py                        |   73 +
 .../version.py => tests/cover/test_chooser.py      |   31 +-
 tests/cover/test_classmap.py                       |   90 +
 tests/cover/test_collective_minimization.py        |   56 +
 tests/cover/test_composite.py                      |   96 +
 tests/cover/test_control.py                        |  115 +
 .../version.py => tests/cover/test_conventions.py  |    7 +-
 tests/cover/test_converter.py                      |   59 +
 tests/cover/test_core.py                           |   94 +
 tests/cover/test_custom_reprs.py                   |   58 +
 tests/cover/test_database.py                       |  257 +
 tests/cover/test_database_backend.py               |   85 +
 tests/cover/test_deferred_errors.py                |   73 +
 tests/cover/test_deprecated_api.py                 |  299 ++
 tests/cover/test_deprecation.py                    |  101 +
 .../version.py => tests/cover/test_descriptors.py  |   14 +-
 tests/cover/test_direct_strategies.py              |  255 +
 .../cover/test_distributions.py                    |   30 +-
 .../version.py => tests/cover/test_draw_example.py |   19 +-
 .../cover/test_dynamic_variable.py                 |   21 +-
 .../cover/test_eval_as_source.py                   |   26 +-
 .../version.py => tests/cover/test_example.py      |   12 +-
 tests/cover/test_examplesource.py                  |   91 +
 tests/cover/test_executors.py                      |   89 +
 tests/cover/test_exhaustion.py                     |   56 +
 tests/cover/test_explicit_examples.py              |  208 +
 tests/cover/test_extmethod.py                      |   69 +
 tests/cover/test_fancy_repr.py                     |   52 +
 tests/cover/test_filestorage.py                    |   56 +
 .../version.py => tests/cover/test_filtering.py    |   18 +-
 tests/cover/test_find.py                           |  107 +
 tests/cover/test_flatmap.py                        |  148 +
 tests/cover/test_float_nastiness.py                |  130 +
 tests/cover/test_forking.py                        |  126 +
 tests/cover/test_given_error_conditions.py         |   60 +
 tests/cover/test_health_checks.py                  |  193 +
 .../version.py => tests/cover/test_idkey.py        |   26 +-
 .../version.py => tests/cover/test_imports.py      |   10 +-
 tests/cover/test_manual_given_invocation.py        |   80 +
 .../version.py => tests/cover/test_minimal.py      |   23 +-
 tests/cover/test_morpher.py                        |  116 +
 tests/cover/test_nary_tree.py                      |   77 +
 tests/cover/test_nice_string.py                    |  200 +
 .../version.py => tests/cover/test_numerics.py     |   17 +-
 .../version.py => tests/cover/test_one_of.py       |   24 +-
 .../version.py => tests/cover/test_permutations.py |   23 +-
 tests/cover/test_random_module.py                  |   45 +
 tests/cover/test_randomization.py                  |   51 +
 tests/cover/test_recursive.py                      |  179 +
 tests/cover/test_reflection.py                     |  628 +++
 tests/cover/test_reporting.py                      |   94 +
 .../version.py => tests/cover/test_sampled_from.py |    9 +-
 tests/cover/test_searchstrategy.py                 |  192 +
 tests/cover/test_sets.py                           |  107 +
 tests/cover/test_settings.py                       |  166 +
 tests/cover/test_setup_teardown.py                 |  150 +
 tests/cover/test_sharing.py                        |   75 +
 tests/cover/test_simple_characters.py              |   94 +
 tests/cover/test_simple_collections.py             |  273 ++
 tests/cover/test_simple_numbers.py                 |  299 ++
 tests/cover/test_simple_strings.py                 |  120 +
 tests/cover/test_sizes.py                          |   54 +
 tests/cover/test_stateful.py                       |  600 +++
 .../cover/test_strategytests.py                    |   11 +-
 tests/cover/test_streams.py                        |  182 +
 tests/cover/test_testdecorators.py                 |  642 +++
 .../version.py => tests/cover/test_timeout.py      |   27 +-
 tests/cover/test_tracker.py                        |   99 +
 .../version.py => tests/cover/test_uuids.py        |   15 +-
 tests/cover/test_validation.py                     |  151 +
 tests/cover/test_verbosity.py                      |  126 +
 tests/cover/test_via_the_database.py               |  116 +
 .../cover/test_weird_settings.py                   |   11 +-
 .../version.py => tests/datetime/__init__.py       |    5 -
 tests/datetime/test_dates.py                       |   69 +
 tests/datetime/test_datetime.py                    |  209 +
 tests/datetime/test_times.py                       |   98 +
 .../version.py => tests/django/__init__.py         |    5 -
 .../version.py => tests/django/manage.py           |   12 +-
 .../version.py => tests/django/toys/__init__.py    |    5 -
 tests/django/toys/settings.py                      |  104 +
 .../version.py => tests/django/toys/urls.py        |   12 +-
 .../version.py => tests/django/toys/wsgi.py        |   19 +-
 .../django/toystore/__init__.py                    |    5 -
 .../version.py => tests/django/toystore/admin.py   |    3 -
 tests/django/toystore/models.py                    |   81 +
 tests/django/toystore/test_basic_configuration.py  |   71 +
 tests/django/toystore/test_fixtures.py             |   88 +
 tests/django/toystore/test_given_models.py         |   83 +
 .../version.py => tests/django/toystore/views.py   |    3 -
 .../version.py => tests/fakefactory/__init__.py    |    5 -
 tests/fakefactory/test_fake_factory.py             |  112 +
 .../version.py => tests/nocover/__init__.py        |    5 -
 tests/nocover/test_compat.py                       |   81 +
 .../version.py => tests/nocover/test_debug.py      |   22 +-
 tests/nocover/test_descriptortests.py              |  257 +
 tests/nocover/test_example_quality.py              |  508 ++
 tests/nocover/test_floating.py                     |  163 +
 tests/nocover/test_git_merge.py                    |  139 +
 tests/nocover/test_pretty_repr.py                  |  119 +
 tests/nocover/test_statistical_distribution.py     |  407 ++
 tests/nocover/test_strategy_state.py               |  367 ++
 .../version.py => tests/nocover/test_streams.py    |   19 +-
 .../version.py => tests/numpy/__init__.py          |    5 -
 tests/numpy/test_gen_data.py                       |  102 +
 src/hypothesis/version.py => tests/py2/__init__.py |    5 -
 .../version.py => tests/py2/test_destructuring.py  |   21 +-
 src/hypothesis/version.py => tests/py3/__init__.py |    5 -
 .../py3/test_unicode_identifiers.py                |   25 +-
 tests/pytest/test_capture.py                       |   83 +
 .../version.py => tests/pytest/test_compat.py      |   12 +-
 .../version.py => tests/pytest/test_mark.py        |   24 +-
 .../version.py => tests/pytest/test_profiles.py    |   27 +-
 .../version.py => tests/pytest/test_reporting.py   |   27 +-
 .../version.py => tests/pytest/test_runs.py        |   19 +-
 tox.ini                                            |  132 +
 185 files changed, 24649 insertions(+), 603 deletions(-)

diff --cc debian/.git-dpm
index 3d880a2,0000000..42c7e3a
mode 100644,000000..100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@@ -1,11 -1,0 +1,11 @@@
 +# see git-dpm(1) from git-dpm package
- 917e33d40e98591ff160f4a41b17239b513c1f61
- 917e33d40e98591ff160f4a41b17239b513c1f61
- 917e33d40e98591ff160f4a41b17239b513c1f61
- 917e33d40e98591ff160f4a41b17239b513c1f61
- python-hypothesis_1.17.0.orig.tar.gz
- ab993fe431a1020ed71b6c255d5f9bf6c00569fe
- 84323
++9cb4900fe95190c3a6cb4a87a6ee68cb8d53fa65
++9cb4900fe95190c3a6cb4a87a6ee68cb8d53fa65
++9cb4900fe95190c3a6cb4a87a6ee68cb8d53fa65
++9cb4900fe95190c3a6cb4a87a6ee68cb8d53fa65
++python-hypothesis_1.18.0.orig.tar.gz
++8ccd260a38a56e5d3b9705604643cc3a6db08387
++261660
 +debianTag="debian/%e%v"
 +patchedTag="patched/%e%v"
 +upstreamTag="upstream/%e%u"

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



More information about the Python-modules-commits mailing list