[Python-modules-commits] [python-hypothesis] branch upstream updated (0123e78 -> 357abc5)

Tristan Seligmann mithrandi at moszumanska.debian.org
Tue Nov 8 02:56:29 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  0123e78   Import python-hypothesis_3.4.2.orig.tar.gz
       new  357abc5   Import python-hypothesis_3.6.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:
 .travis.yml                                        |  14 +-
 Makefile                                           |  25 +-
 README.rst                                         |   2 +-
 appveyor.yml                                       |   9 -
 benchmarks/test_strategies.py                      |   2 +-
 docs/changes.rst                                   |  88 +++
 docs/conf.py                                       |   2 +-
 docs/details.rst                                   |  93 +++
 docs/settings.rst                                  |   2 +-
 docs/usage.rst                                     |   2 +
 examples/test_binary_search.py                     |  25 +-
 examples/test_rle.py                               |   2 +-
 hypothesislegacysupport/LICENSE                    | 662 ---------------------
 hypothesislegacysupport/README.rst                 |   9 -
 hypothesislegacysupport/setup.py                   |  46 --
 .../src/hypothesislegacysupport/__init__.py        |  30 -
 .../src/hypothesislegacysupport/compat.py          |  54 --
 .../src/hypothesislegacysupport/version.py         |  24 -
 scripts/basic-test.sh                              |   4 -
 scripts/check_encoding_header.py                   |   2 +-
 scripts/enforce_header.py                          |   2 +-
 scripts/header.py                                  |   2 +-
 scripts/install.sh                                 |   2 +-
 scripts/unicodechecker.py                          |   2 +-
 setup.py                                           |   4 +-
 src/hypothesis/__init__.py                         |   5 +-
 src/hypothesis/_settings.py                        |  17 +-
 src/hypothesis/configuration.py                    |   2 +-
 src/hypothesis/control.py                          |  32 +-
 src/hypothesis/core.py                             |  33 +-
 src/hypothesis/database.py                         |  18 +-
 src/hypothesis/errors.py                           |  10 +-
 src/hypothesis/executors.py                        |   2 +-
 src/hypothesis/extra/__init__.py                   |   2 +-
 src/hypothesis/extra/datetime.py                   |   2 +-
 src/hypothesis/extra/django/__init__.py            |   2 +-
 src/hypothesis/extra/django/models.py              |   2 +-
 src/hypothesis/extra/fakefactory.py                |   2 +-
 src/hypothesis/extra/numpy.py                      |   2 +-
 src/hypothesis/extra/pytestplugin.py               |  71 ++-
 src/hypothesis/internal/__init__.py                |   2 +-
 src/hypothesis/internal/charmap.py                 |   2 +-
 src/hypothesis/internal/classmap.py                |   2 +-
 src/hypothesis/internal/compat.py                  |  84 +--
 src/hypothesis/internal/conjecture/__init__.py     |   2 +-
 src/hypothesis/internal/conjecture/data.py         |  11 +-
 src/hypothesis/internal/conjecture/engine.py       |  72 ++-
 src/hypothesis/internal/conjecture/minimizer.py    |   2 +-
 src/hypothesis/internal/conjecture/utils.py        |  34 +-
 src/hypothesis/internal/debug.py                   |   2 +-
 src/hypothesis/internal/deferredformat.py          |  42 ++
 .../hypothesis/internal/detection.py               |  10 +-
 src/hypothesis/internal/floats.py                  |   2 +-
 src/hypothesis/internal/intervalsets.py            |   2 +-
 src/hypothesis/internal/reflection.py              |   5 +-
 src/hypothesis/reporting.py                        |   2 +-
 src/hypothesis/searchstrategy/__init__.py          |   2 +-
 src/hypothesis/searchstrategy/collections.py       |   2 +-
 src/hypothesis/searchstrategy/deferred.py          |   2 +-
 src/hypothesis/searchstrategy/fixed.py             |   2 +-
 src/hypothesis/searchstrategy/flatmapped.py        |   2 +-
 src/hypothesis/searchstrategy/misc.py              |   7 +-
 src/hypothesis/searchstrategy/numbers.py           |  15 +-
 src/hypothesis/searchstrategy/recursive.py         |  41 +-
 src/hypothesis/searchstrategy/reprwrapper.py       |   2 +-
 src/hypothesis/searchstrategy/shared.py            |   2 +-
 src/hypothesis/searchstrategy/strategies.py        |  17 +-
 src/hypothesis/searchstrategy/streams.py           |   2 +-
 src/hypothesis/searchstrategy/strings.py           |   2 +-
 src/hypothesis/searchstrategy/wrappers.py          |   2 +-
 src/hypothesis/stateful.py                         |  12 +-
 src/hypothesis/statistics.py                       |  84 +++
 src/hypothesis/strategies.py                       | 167 ++++--
 src/hypothesis/strategytests.py                    |   2 +-
 src/hypothesis/tools/__init__.py                   |   2 +-
 src/hypothesis/tools/mergedbs.py                   |   2 +-
 src/hypothesis/types.py                            |   2 +-
 src/hypothesis/utils/__init__.py                   |   5 +-
 src/hypothesis/utils/conventions.py                |   2 +-
 src/hypothesis/utils/dynamicvariables.py           |   2 +-
 src/hypothesis/vendor/__init__.py                  |   2 +-
 src/hypothesis/vendor/pretty.py                    |  25 +-
 src/hypothesis/version.py                          |   4 +-
 tests/__init__.py                                  |   2 +-
 tests/common/__init__.py                           |   2 +-
 tests/common/setup.py                              |   2 +-
 tests/common/utils.py                              |   4 +-
 tests/conftest.py                                  |   2 +-
 tests/cover/__init__.py                            |   2 +-
 tests/cover/test_arbitrary_data.py                 |   2 +-
 tests/cover/test_bad_repr.py                       |   2 +-
 tests/cover/test_caching.py                        |   2 +-
 tests/cover/test_charmap.py                        |   2 +-
 tests/cover/test_choices.py                        |   2 +-
 tests/cover/test_classmap.py                       |   2 +-
 tests/cover/test_composite.py                      |   2 +-
 tests/cover/test_conjecture_engine.py              |   2 +-
 tests/cover/test_conjecture_minimizer.py           |   2 +-
 tests/cover/test_conjecture_test_data.py           |   2 +-
 tests/cover/test_conjecture_utils.py               |   2 +-
 tests/cover/test_control.py                        |  31 +-
 tests/cover/test_conventions.py                    |   2 +-
 tests/cover/test_core.py                           |   4 +-
 tests/cover/test_custom_reprs.py                   |   2 +-
 tests/cover/test_database_agreement.py             |   2 +-
 tests/cover/test_database_backend.py               |  21 +-
 tests/cover/test_database_usage.py                 |   2 +-
 tests/cover/test_deferred_errors.py                |   2 +-
 tests/cover/test_detection.py                      |  67 +++
 tests/cover/test_direct_strategies.py              | 151 +++--
 tests/cover/test_draw_example.py                   |   2 +-
 tests/cover/test_dynamic_variable.py               |   2 +-
 tests/cover/test_eval_as_source.py                 |   2 +-
 tests/cover/test_example.py                        |   2 +-
 tests/cover/test_executors.py                      |   2 +-
 tests/cover/test_explicit_examples.py              |   2 +-
 tests/cover/test_fancy_repr.py                     |   2 +-
 tests/cover/test_filestorage.py                    |   2 +-
 tests/cover/test_filtering.py                      |   2 +-
 tests/cover/test_find.py                           |   2 +-
 tests/cover/test_fixed_strategies.py               |   2 +-
 tests/cover/test_flakiness.py                      |   2 +-
 tests/cover/test_flatmap.py                        |   2 +-
 tests/cover/test_float_nastiness.py                |   2 +-
 tests/cover/test_given_error_conditions.py         |   2 +-
 tests/cover/test_health_checks.py                  |   2 +-
 tests/cover/test_imports.py                        |   2 +-
 tests/cover/test_integer_ranges.py                 |   2 +-
 tests/cover/test_interleaving.py                   |   2 +-
 tests/cover/test_internal_helpers.py               |   2 +-
 tests/cover/test_intervalset.py                    |   2 +-
 tests/cover/test_limits.py                         |   2 +-
 tests/cover/test_map.py                            |   2 +-
 tests/cover/test_nothing.py                        |   2 +-
 tests/cover/test_numerics.py                       |   2 +-
 tests/cover/test_permutations.py                   |   2 +-
 tests/cover/test_phases.py                         |   2 +-
 tests/cover/test_pretty.py                         |  16 +-
 tests/cover/test_random_module.py                  |   2 +-
 tests/cover/test_randomization.py                  |   2 +-
 tests/cover/test_recursive.py                      |   8 +-
 tests/cover/test_reflection.py                     |   2 +-
 tests/cover/test_reporting.py                      |   2 +-
 tests/cover/test_runner_strategy.py                |   2 +-
 tests/cover/test_sampled_from.py                   |   2 +-
 tests/cover/test_searchstrategy.py                 |   2 +-
 tests/cover/test_sets.py                           |   2 +-
 tests/cover/test_settings.py                       |   2 +-
 tests/cover/test_setup_teardown.py                 |   2 +-
 tests/cover/test_sharing.py                        |   2 +-
 tests/cover/test_shrinking_limits.py               |   2 +-
 tests/cover/test_simple_characters.py              |   2 +-
 tests/cover/test_simple_collections.py             |   2 +-
 tests/cover/test_simple_numbers.py                 |   2 +-
 tests/cover/test_simple_strings.py                 |   2 +-
 tests/cover/test_stateful.py                       |   2 +-
 tests/cover/test_statistical_events.py             | 133 +++++
 tests/cover/test_strategytests.py                  |   2 +-
 tests/cover/test_streams.py                        |   2 +-
 tests/cover/test_testdecorators.py                 |  20 +-
 tests/cover/test_threading.py                      |   2 +-
 tests/cover/test_timeout.py                        |   2 +-
 tests/cover/test_uuids.py                          |   2 +-
 tests/cover/test_validation.py                     |   2 +-
 tests/cover/test_verbosity.py                      |   2 +-
 tests/cover/test_weird_settings.py                 |   2 +-
 tests/datetime/__init__.py                         |   2 +-
 tests/datetime/test_dates.py                       |   2 +-
 tests/datetime/test_datetime.py                    |   4 +-
 tests/datetime/test_times.py                       |   2 +-
 tests/django/__init__.py                           |   2 +-
 tests/django/manage.py                             |   2 +-
 tests/django/toys/__init__.py                      |   2 +-
 tests/django/toys/settings.py                      |   2 +-
 tests/django/toys/urls.py                          |   2 +-
 tests/django/toys/wsgi.py                          |   2 +-
 tests/django/toystore/__init__.py                  |   2 +-
 tests/django/toystore/admin.py                     |   2 +-
 tests/django/toystore/models.py                    |   2 +-
 tests/django/toystore/test_basic_configuration.py  |   2 +-
 tests/django/toystore/test_given_models.py         |   2 +-
 tests/django/toystore/views.py                     |   2 +-
 tests/fakefactory/__init__.py                      |   2 +-
 tests/fakefactory/test_fake_factory.py             |   2 +-
 tests/nocover/__init__.py                          |   2 +-
 tests/nocover/test_choices.py                      |   2 +-
 tests/nocover/test_collective_minimization.py      |   4 +-
 tests/nocover/test_compat.py                       |   2 +-
 tests/nocover/test_descriptortests.py              |   2 +-
 tests/nocover/test_example_quality.py              |  12 +-
 tests/nocover/test_floating.py                     |   2 +-
 tests/nocover/test_git_merge.py                    |   2 +-
 tests/nocover/test_pretty_repr.py                  |   2 +-
 tests/nocover/test_recursive.py                    |   2 +-
 tests/nocover/test_statistical_distribution.py     |  23 +-
 tests/nocover/test_strategy_state.py               |   7 +-
 tests/nocover/test_streams.py                      |   2 +-
 tests/numpy/__init__.py                            |   2 +-
 tests/numpy/test_gen_data.py                       |   2 +-
 tests/py2/__init__.py                              |   2 +-
 tests/py2/test_destructuring.py                    |   2 +-
 tests/py3/__init__.py                              |   2 +-
 .../version.py => tests/py3/test_annotations.py    |  11 +-
 tests/py3/test_asyncio.py                          |   2 +-
 tests/py3/test_unicode_identifiers.py              |   2 +-
 tests/pytest/test_capture.py                       |   2 +-
 tests/pytest/test_compat.py                        |   2 +-
 tests/{conftest.py => pytest/test_doctest.py}      |  22 +-
 tests/pytest/test_mark.py                          |  25 +-
 tests/pytest/test_profiles.py                      |   2 +-
 tests/pytest/test_reporting.py                     |   2 +-
 tests/pytest/test_runs.py                          |   2 +-
 tests/pytest/test_statistics.py                    | 113 ++++
 tox.ini                                            |  49 +-
 214 files changed, 1541 insertions(+), 1404 deletions(-)
 delete mode 100644 hypothesislegacysupport/LICENSE
 delete mode 100644 hypothesislegacysupport/README.rst
 delete mode 100644 hypothesislegacysupport/setup.py
 delete mode 100644 hypothesislegacysupport/src/hypothesislegacysupport/__init__.py
 delete mode 100644 hypothesislegacysupport/src/hypothesislegacysupport/compat.py
 delete mode 100644 hypothesislegacysupport/src/hypothesislegacysupport/version.py
 create mode 100644 src/hypothesis/internal/deferredformat.py
 copy tests/cover/test_conventions.py => src/hypothesis/internal/detection.py (71%)
 create mode 100644 src/hypothesis/statistics.py
 create mode 100644 tests/cover/test_detection.py
 create mode 100644 tests/cover/test_statistical_events.py
 copy src/hypothesis/version.py => tests/py3/test_annotations.py (76%)
 copy tests/{conftest.py => pytest/test_doctest.py} (63%)
 create mode 100644 tests/pytest/test_statistics.py

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