summaryrefslogtreecommitdiff
path: root/coverage/python.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/python.py')
-rw-r--r--coverage/python.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/python.py b/coverage/python.py
index 0d2fb3b4..0cd2181c 100644
--- a/coverage/python.py
+++ b/coverage/python.py
@@ -165,8 +165,8 @@ class PythonFileReporter(FileReporter):
def exit_counts(self):
return self.parser.exit_counts()
- def missing_arc_description(self, start, end):
- return self.parser.missing_arc_description(start, end)
+ def missing_arc_description(self, start, end, executed_arcs=None):
+ return self.parser.missing_arc_description(start, end, executed_arcs)
@contract(returns='unicode')
def source(self):