[Python-modules-commits] [python-hypothesis] branch upstream updated (eb7b1f8 -> 29758f9)

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 change to branch upstream
in repository python-hypothesis.

      from  eb7b1f8   Import python-hypothesis_2.0.0.orig.tar.gz
       new  29758f9   Import python-hypothesis_3.0.0.orig.tar.gz

The 1 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:
 README.rst                                         |   3 -
 appveyor.yml                                       |  16 +-
 benchmarks/test_strategies.py                      | 151 +++++
 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_chooser.py                        |  47 --
 tests/cover/test_conjecture_engine.py              | 475 ++++++++++++++
 ...king_limits.py => test_conjecture_minimizer.py} |  20 +-
 tests/cover/test_conjecture_test_data.py           | 117 ++++
 ...est_conventions.py => test_conjecture_utils.py} |   7 +-
 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_weird_settings.py => test_interleaving.py} |  19 +-
 .../test_internal_helpers.py}                      |  12 +-
 tests/cover/test_intervalset.py                    |  87 +++
 .../{test_weird_settings.py => test_limits.py}     |  13 +-
 .../cover/{test_weird_settings.py => 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, 5079 insertions(+), 8891 deletions(-)
 create mode 100644 benchmarks/test_strategies.py
 delete mode 100644 docs/internals.rst
 create mode 100644 examples/README.rst
 create mode 100644 examples/test_binary_search.py
 create mode 100644 examples/test_rle.py
 create mode 100644 src/hypothesis/database.py
 delete mode 100644 src/hypothesis/database/__init__.py
 delete mode 100644 src/hypothesis/database/backend.py
 delete mode 100644 src/hypothesis/database/formats.py
 rename src/hypothesis/{executors => }/executors.py (65%)
 delete mode 100644 src/hypothesis/executors/__init__.py
 delete mode 100644 src/hypothesis/extra/django/fixtures.py
 create mode 100644 src/hypothesis/internal/charmap.py
 delete mode 100644 src/hypothesis/internal/charstree.py
 delete mode 100644 src/hypothesis/internal/chooser.py
 rename src/hypothesis/{testrunners => internal/conjecture}/__init__.py (100%)
 create mode 100644 src/hypothesis/internal/conjecture/data.py
 create mode 100644 src/hypothesis/internal/conjecture/engine.py
 create mode 100644 src/hypothesis/internal/conjecture/minimizer.py
 create mode 100644 src/hypothesis/internal/conjecture/utils.py
 delete mode 100644 src/hypothesis/internal/distributions.py
 delete mode 100644 src/hypothesis/internal/examplesource.py
 delete mode 100644 src/hypothesis/internal/extmethod.py
 create mode 100644 src/hypothesis/internal/floats.py
 create mode 100644 src/hypothesis/internal/intervalsets.py
 delete mode 100644 src/hypothesis/internal/tracker.py
 create mode 100644 src/hypothesis/searchstrategy/fixed.py
 delete mode 100644 src/hypothesis/searchstrategy/morphers.py
 delete mode 100644 src/hypothesis/testrunners/forking.py
 copy tests/{conftest.py => common/setup.py} (58%)
 create mode 100644 tests/cover/test_arbitrary_data.py
 create mode 100644 tests/cover/test_charmap.py
 delete mode 100644 tests/cover/test_charstree.py
 delete mode 100644 tests/cover/test_chooser.py
 create mode 100644 tests/cover/test_conjecture_engine.py
 copy tests/cover/{test_shrinking_limits.py => test_conjecture_minimizer.py} (68%)
 create mode 100644 tests/cover/test_conjecture_test_data.py
 copy tests/cover/{test_conventions.py => test_conjecture_utils.py} (75%)
 delete mode 100644 tests/cover/test_converter.py
 delete mode 100644 tests/cover/test_database.py
 create mode 100644 tests/cover/test_database_agreement.py
 create mode 100644 tests/cover/test_database_usage.py
 delete mode 100644 tests/cover/test_distributions.py
 delete mode 100644 tests/cover/test_examplesource.py
 delete mode 100644 tests/cover/test_exhaustion.py
 delete mode 100644 tests/cover/test_extmethod.py
 create mode 100644 tests/cover/test_fixed_strategies.py
 delete mode 100644 tests/cover/test_forking.py
 create mode 100644 tests/cover/test_integer_ranges.py
 copy tests/cover/{test_weird_settings.py => test_interleaving.py} (57%)
 copy tests/{pytest/test_compat.py => cover/test_internal_helpers.py} (79%)
 create mode 100644 tests/cover/test_intervalset.py
 copy tests/cover/{test_weird_settings.py => test_limits.py} (79%)
 copy tests/cover/{test_weird_settings.py => test_map.py} (68%)
 delete mode 100644 tests/cover/test_minimal.py
 delete mode 100644 tests/cover/test_morpher.py
 delete mode 100644 tests/cover/test_one_of.py
 delete mode 100644 tests/cover/test_tracker.py
 delete mode 100644 tests/cover/test_via_the_database.py
 delete mode 100644 tests/django/toystore/test_fixtures.py
 copy tests/{cover => nocover}/test_choices.py (65%)
 rename tests/{cover => nocover}/test_collective_minimization.py (94%)
 delete mode 100644 tests/nocover/test_debug.py
 copy tests/{cover => nocover}/test_recursive.py (65%)

-- 
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