diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-12-31 15:39:30 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-12-31 15:39:30 -0500 |
commit | 4b33f09a3d46e5dd051d060a1926567fd418cbb7 (patch) | |
tree | ef2d0bf88e295648acf1515f4c927124c3a3f8ed /coverage/results.py | |
parent | 35c09545a39e70065ce55264f2688ac87dd6a725 (diff) | |
download | python-coveragepy-git-4b33f09a3d46e5dd051d060a1926567fd418cbb7.tar.gz |
Exception tests pass on py3
--HG--
branch : ast-branch
Diffstat (limited to 'coverage/results.py')
-rw-r--r-- | coverage/results.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/coverage/results.py b/coverage/results.py index b80d5042..9627373d 100644 --- a/coverage/results.py +++ b/coverage/results.py @@ -26,7 +26,6 @@ class Analysis(object): if self.data.has_arcs(): self._arc_possibilities = sorted(self.file_reporter.arcs()) - self._ast_arc_possibilities = sorted(self.file_reporter.ast_arcs()) self.exit_counts = self.file_reporter.exit_counts() self.no_branch = self.file_reporter.no_branch_lines() n_branches = self.total_branches() @@ -37,7 +36,6 @@ class Analysis(object): n_missing_branches = sum(len(v) for k,v in iitems(mba)) else: self._arc_possibilities = [] - self._ast_arc_possibilities = [] self.exit_counts = {} self.no_branch = set() n_branches = n_partial_branches = n_missing_branches = 0 @@ -68,9 +66,6 @@ class Analysis(object): """Returns a sorted list of the arcs in the code.""" return self._arc_possibilities - def ast_arc_possibilities(self): - return self._ast_arc_possibilities - def arcs_executed(self): """Returns a sorted list of the arcs actually executed in the code.""" executed = self.data.arcs(self.filename) or [] |