summaryrefslogtreecommitdiff
path: root/coverage/python.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-02-08 09:54:24 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-02-08 09:54:24 -0500
commitcac60611433490b85e337be3c53299a9406fd098 (patch)
treeee544da31aaa8eca69014a86c82deb950a7ffca4 /coverage/python.py
parent6cda7f1fda3e087b1128b40d73fb4da8486b4b05 (diff)
downloadpython-coveragepy-git-cac60611433490b85e337be3c53299a9406fd098.tar.gz
missing_arc_description is better than arc_destination_description. One test broken.
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 59e6346a..0d2fb3b4 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 arc_destination_description(self, lineno):
- return self.parser.arc_destination_description(lineno)
+ def missing_arc_description(self, start, end):
+ return self.parser.missing_arc_description(start, end)
@contract(returns='unicode')
def source(self):