[Python-modules-commits] [python-hypothesis] 03/06: record new upstream branch created by importing python-hypothesis_3.0.0.orig.tar.gz and merge it
Tristan Seligmann
mithrandi at moszumanska.debian.org
Wed Feb 17 16:11:27 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 3498f85e5ba20bb3ca20ff896608f08932920551
Merge: 07dced6 29758f9
Author: Tristan Seligmann <mithrandi at debian.org>
Date: Wed Feb 17 17:44:04 2016 +0200
record new upstream branch created by importing python-hypothesis_3.0.0.orig.tar.gz and merge it
README.rst | 3 -
appveyor.yml | 16 +-
benchmarks/test_strategies.py | 151 +++++
debian/.git-dpm | 14 +-
docs/changes.rst | 61 +-
docs/data.rst | 127 +---
docs/database.rst | 2 +-
docs/details.rst | 43 --
docs/django.rst | 104 +---
docs/examples.rst | 12 +-
docs/extras.rst | 2 +-
docs/index.rst | 1 -
docs/internals.rst | 287 ---------
docs/manifesto.rst | 6 +-
docs/settings.rst | 100 ++-
docs/stateful.rst | 6 +-
docs/supported.rst | 10 +-
docs/usage.rst | 7 +-
examples/README.rst | 10 +
examples/test_binary_search.py | 143 +++++
examples/test_rle.py | 104 ++++
scripts/basic-test.sh | 36 +-
setup.py | 7 +-
src/hypothesis/__init__.py | 3 +-
src/hypothesis/_settings.py | 53 +-
src/hypothesis/configuration.py | 4 +-
src/hypothesis/control.py | 19 +-
src/hypothesis/core.py | 653 +++++++------------
src/hypothesis/database.py | 255 ++++++++
src/hypothesis/database/__init__.py | 89 ---
src/hypothesis/database/backend.py | 156 -----
src/hypothesis/database/formats.py | 75 ---
src/hypothesis/errors.py | 31 +-
src/hypothesis/{executors => }/executors.py | 36 +-
src/hypothesis/executors/__init__.py | 42 --
src/hypothesis/extra/datetime.py | 189 +-----
src/hypothesis/extra/django/fixtures.py | 110 ----
src/hypothesis/extra/django/models.py | 18 +-
src/hypothesis/extra/fakefactory.py | 45 +-
src/hypothesis/extra/numpy.py | 140 +----
src/hypothesis/internal/charmap.py | 158 +++++
src/hypothesis/internal/charstree.py | 310 ----------
src/hypothesis/internal/chooser.py | 46 --
src/hypothesis/internal/compat.py | 125 ++++
.../conjecture}/__init__.py | 0
src/hypothesis/internal/conjecture/data.py | 167 +++++
src/hypothesis/internal/conjecture/engine.py | 435 +++++++++++++
src/hypothesis/internal/conjecture/minimizer.py | 139 +++++
src/hypothesis/internal/conjecture/utils.py | 130 ++++
src/hypothesis/internal/debug.py | 73 ---
src/hypothesis/internal/distributions.py | 65 --
src/hypothesis/internal/examplesource.py | 107 ----
src/hypothesis/internal/extmethod.py | 64 --
src/hypothesis/internal/floats.py | 57 ++
src/hypothesis/internal/intervalsets.py | 83 +++
src/hypothesis/internal/tracker.py | 80 ---
src/hypothesis/searchstrategy/collections.py | 687 ++------------------
src/hypothesis/searchstrategy/deferred.py | 35 +-
src/hypothesis/searchstrategy/fixed.py | 63 ++
src/hypothesis/searchstrategy/flatmapped.py | 16 +-
src/hypothesis/searchstrategy/misc.py | 91 +--
src/hypothesis/searchstrategy/morphers.py | 204 ------
src/hypothesis/searchstrategy/numbers.py | 688 ++++-----------------
src/hypothesis/searchstrategy/recursive.py | 48 +-
src/hypothesis/searchstrategy/reprwrapper.py | 21 -
src/hypothesis/searchstrategy/shared.py | 65 +-
src/hypothesis/searchstrategy/strategies.py | 417 ++-----------
src/hypothesis/searchstrategy/streams.py | 186 +-----
src/hypothesis/searchstrategy/strings.py | 207 ++-----
src/hypothesis/searchstrategy/wrappers.py | 27 +-
src/hypothesis/stateful.py | 335 +---------
src/hypothesis/strategies.py | 337 +++++-----
src/hypothesis/strategytests.py | 261 +-------
src/hypothesis/testrunners/forking.py | 105 ----
src/hypothesis/types.py | 13 -
src/hypothesis/version.py | 2 +-
tests/common/__init__.py | 12 +-
tests/{conftest.py => common/setup.py} | 40 +-
tests/conftest.py | 28 +-
tests/cover/test_arbitrary_data.py | 86 +++
tests/cover/test_charmap.py | 119 ++++
tests/cover/test_charstree.py | 90 ---
tests/cover/test_choices.py | 47 +-
tests/cover/test_conjecture_engine.py | 475 ++++++++++++++
.../test_conjecture_minimizer.py} | 16 +-
tests/cover/test_conjecture_test_data.py | 117 ++++
.../cover/test_conjecture_utils.py | 8 +-
tests/cover/test_control.py | 7 +-
tests/cover/test_converter.py | 56 --
tests/cover/test_core.py | 13 +-
tests/cover/test_database.py | 259 --------
tests/cover/test_database_agreement.py | 77 +++
tests/cover/test_database_backend.py | 132 +++-
tests/cover/test_database_usage.py | 109 ++++
tests/cover/test_direct_strategies.py | 11 -
tests/cover/test_distributions.py | 46 --
tests/cover/test_example.py | 7 +
tests/cover/test_examplesource.py | 91 ---
tests/cover/test_executors.py | 8 +
tests/cover/test_exhaustion.py | 57 --
tests/cover/test_explicit_examples.py | 10 +
tests/cover/test_extmethod.py | 69 ---
tests/cover/test_find.py | 18 +-
tests/cover/test_fixed_strategies.py | 79 +++
tests/cover/test_flakiness.py | 81 +--
tests/cover/test_flatmap.py | 32 +-
tests/cover/test_float_nastiness.py | 24 +-
tests/cover/test_forking.py | 126 ----
tests/cover/test_given_error_conditions.py | 6 +-
tests/cover/test_health_checks.py | 100 +--
tests/cover/test_integer_ranges.py | 72 +++
.../{test_chooser.py => test_interleaving.py} | 44 +-
.../cover/test_internal_helpers.py | 12 +-
tests/cover/test_intervalset.py | 87 +++
tests/cover/{test_example.py => test_limits.py} | 17 +-
tests/{django/manage.py => cover/test_map.py} | 19 +-
tests/cover/test_minimal.py | 38 --
tests/cover/test_morpher.py | 119 ----
tests/cover/test_one_of.py | 40 --
tests/cover/test_recursive.py | 163 +----
tests/cover/test_reporting.py | 13 +-
tests/cover/test_searchstrategy.py | 92 +--
tests/cover/test_sets.py | 87 +--
tests/cover/test_simple_collections.py | 32 +-
tests/cover/test_simple_numbers.py | 97 +--
tests/cover/test_simple_strings.py | 48 +-
tests/cover/test_sizes.py | 28 -
tests/cover/test_stateful.py | 195 +-----
tests/cover/test_streams.py | 92 +--
tests/cover/test_testdecorators.py | 23 +-
tests/cover/test_timeout.py | 13 +-
tests/cover/test_tracker.py | 99 ---
tests/cover/test_validation.py | 23 +-
tests/cover/test_verbosity.py | 15 +-
tests/cover/test_via_the_database.py | 115 ----
tests/datetime/test_dates.py | 24 -
tests/datetime/test_datetime.py | 53 +-
tests/datetime/test_times.py | 13 -
tests/django/manage.py | 3 +
tests/django/toystore/test_basic_configuration.py | 12 +-
tests/django/toystore/test_fixtures.py | 88 ---
tests/{cover => nocover}/test_choices.py | 39 +-
.../test_collective_minimization.py | 5 +-
tests/nocover/test_compat.py | 29 +-
tests/nocover/test_debug.py | 37 --
tests/nocover/test_descriptortests.py | 31 +-
tests/nocover/test_example_quality.py | 167 +++--
tests/nocover/test_floating.py | 18 +-
tests/nocover/test_git_merge.py | 13 +-
tests/nocover/test_pretty_repr.py | 4 +-
tests/{cover => nocover}/test_recursive.py | 90 ++-
tests/nocover/test_statistical_distribution.py | 105 ++--
tests/nocover/test_strategy_state.py | 150 +----
tests/nocover/test_streams.py | 8 +-
tests/numpy/test_gen_data.py | 8 +-
tox.ini | 10 +-
156 files changed, 5098 insertions(+), 8865 deletions(-)
diff --cc debian/.git-dpm
index 93ddda3,0000000..637c06c
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
- eb7b1f82e4146b3477e35b9791b21bcfdffa2067
- eb7b1f82e4146b3477e35b9791b21bcfdffa2067
- eb7b1f82e4146b3477e35b9791b21bcfdffa2067
- eb7b1f82e4146b3477e35b9791b21bcfdffa2067
- python-hypothesis_2.0.0.orig.tar.gz
- bab42a31188290e8890d898357dace720643002b
- 242005
++29758f95279f63292e3731c73d1383abd44e55a5
++29758f95279f63292e3731c73d1383abd44e55a5
++29758f95279f63292e3731c73d1383abd44e55a5
++29758f95279f63292e3731c73d1383abd44e55a5
++python-hypothesis_3.0.0.orig.tar.gz
++346e001cbf153853dd701d56d9f25efa589ab848
++217672
+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