diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-17 14:55:40 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-17 14:55:40 -0400 |
commit | 0a71470366131d76c4f4e5ad20eb9b69e55816ef (patch) | |
tree | eb5726aabac81a8bba2edb85195e67c6dcca82a1 /coverage/control.py | |
parent | 3d730ee2fa699e4a5d51f2b8d9677412ba107f3f (diff) | |
download | python-coveragepy-0a71470366131d76c4f4e5ad20eb9b69e55816ef.tar.gz |
coverage._analyze is a non-public function.
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/control.py b/coverage/control.py index ad4d3aa..ef1a620 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -197,10 +197,10 @@ class coverage: """ code_unit = code_unit_factory(morf, self.file_locator)[0] - st, ex, m, mf = self.analyze(code_unit) + st, ex, m, mf = self._analyze(code_unit) return code_unit.filename, st, ex, m, mf - def analyze(self, code_unit): + def _analyze(self, code_unit): """Analyze a single code unit. Returns a 4-tuple: (statements, excluded, missing, missing formatted). |