We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 689105a commit 9e70bebCopy full SHA for 9e70beb
dedupe/branch_and_bound.py
@@ -44,7 +44,7 @@ def _score(partial: Iterable[Predicate]) -> float:
44
return sum(p.cover_count for p in partial)
45
46
47
-def _suppress_recursion_wrapper(func):
+def _suppress_recursion_error(func):
48
def wrapper(*args, **kwargs):
49
try:
50
return func(*args, **kwargs)
@@ -69,7 +69,7 @@ def _covered(partial: Partial) -> int:
69
else 0
70
)
71
72
- @_suppress_recursion_wrapper
+ @_suppress_recursion_error
73
def walk(candidates: Cover, partial: Partial = ()) -> None:
74
nonlocal calls
75
nonlocal cheapest
0 commit comments