File tree 3 files changed +16
-13
lines changed
3 files changed +16
-13
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -21,6 +21,21 @@ Hypothesis APIs come in three flavours:
21
21
You should generally assume that an API is internal unless you have specific
22
22
information to the contrary.
23
23
24
+ --------------------
25
+ 3.44.16 - 2018-01-13
26
+ --------------------
27
+
28
+ This release improves test case reduction for recursive data structures.
29
+ Hypothesis now guarantees that whenever a strategy calls itself recursively
30
+ (usually this will happen because you are using :func: `~hypothesis.strategies.deferred `),
31
+ any recursive call may replace the top level value. e.g. given a tree structure,
32
+ Hypothesis will always try replacing it with a subtree.
33
+
34
+ Additionally this introduces a new heuristic that may in some circumstances
35
+ significantly speed up test case reduction - Hypothesis should be better at
36
+ immediately replacing elements drawn inside another strategy with their minimal
37
+ possible value.
38
+
24
39
--------------------
25
40
3.44.15 - 2018-01-13
26
41
--------------------
Original file line number Diff line number Diff line change 17
17
18
18
from __future__ import division , print_function , absolute_import
19
19
20
- __version_info__ = (3 , 44 , 15 )
20
+ __version_info__ = (3 , 44 , 16 )
21
21
__version__ = '.' .join (map (str , __version_info__ ))
You can’t perform that action at this time.
0 commit comments