Path to this page:
Subject: CVS commit: pkgsrc/devel/py-hypothesis
From: Adam Ciarcinski
Date: 2017-11-06 11:39:08
Message id: 20171106103908.297AEFBDE@cvs.NetBSD.org
Log Message:
py-hypothesis: updated to 3.34.1
3.34.1:
This patch updates the documentation to suggest :func:`builds(callable) \
<hypothesis.strategies.builds>` instead of :func:`just(callable()) \
<hypothesis.strategies.just>`.
3.34.0:
Hypothesis now emits deprecation warnings if you apply :func:`@given \
<hypothesis.given>` more than once to a target.
Applying :func:`@given <hypothesis.given>` repeatedly wraps the target \
multiple times. Each wrapper will search the space of of possible parameters \
separately. This is equivalent but will be much more inefficient than doing it \
with a single call to :func:`@given <hypothesis.given>`.
For example, instead of @given(booleans()) @given(integers()), you could write \
@given(booleans(), integers())
Files: