summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/coverage/control.py b/coverage/control.py
index 952897dc..5e857aa6 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -381,3 +381,8 @@ class Analysis:
missing = [p for p in possible if p not in executed]
return sorted(missing)
+ def arcs_unpredicted(self):
+ possible = self.arc_possibilities()
+ executed = self.arcs_executed()
+ unpredicted = [e for e in executed if e not in possible]
+ return sorted(unpredicted)