diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-09 12:20:02 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-09 12:20:02 -0400 |
commit | bee953400bae23f82ae021035aae0d784f6217d2 (patch) | |
tree | 2b7ea710d6294a2136b5e9e2c90d88903abd62fe /coverage/plugin_support.py | |
parent | db93205a36d4e55ae01c0c625c446b74e0438797 (diff) | |
download | python-coveragepy-git-bee953400bae23f82ae021035aae0d784f6217d2.tar.gz |
Rename .statements and .excluded_statements to .lines and .excluded_lines
Diffstat (limited to 'coverage/plugin_support.py')
-rw-r--r-- | coverage/plugin_support.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/coverage/plugin_support.py b/coverage/plugin_support.py index 92246d46..8863b435 100644 --- a/coverage/plugin_support.py +++ b/coverage/plugin_support.py @@ -198,14 +198,14 @@ class DebugFileReporterWrapper(FileReporter): self.debug.write("relative_filename() --> %r" % (ret,)) return ret - def statements(self): - ret = self.reporter.statements() - self.debug.write("statements() --> %r" % (ret,)) + def lines(self): + ret = self.reporter.lines() + self.debug.write("lines() --> %r" % (ret,)) return ret - def excluded_statements(self): - ret = self.reporter.excluded_statements() - self.debug.write("excluded_statements() --> %r" % (ret,)) + def excluded_lines(self): + ret = self.reporter.excluded_lines() + self.debug.write("excluded_lines() --> %r" % (ret,)) return ret def translate_lines(self, lines): |