summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-05-02 22:31:37 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-05-02 22:31:37 -0400
commitc10e9a105255920fd503609fe50c779eafcf4c3c (patch)
tree8c76b8c430442df9a304fc51b42e9b95088bb43d
parent4e7dcd23d91f04e0aa140395a6c463181352849b (diff)
downloadpython-coveragepy-git-c10e9a105255920fd503609fe50c779eafcf4c3c.tar.gz
There are three phases of work in coverage.
-rw-r--r--TODO.txt10
1 files changed, 8 insertions, 2 deletions
diff --git a/TODO.txt b/TODO.txt
index 829701ba..f6139933 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -81,8 +81,14 @@ x Tricky swapping of collector like figleaf, pycov, et al. (Don't need to do
- New docs, rather than pointing to Gareth's
- Min python version is 2.3.
- - Distinction between ignore (files not to trace), exclude (lines not to trace),
- and omit (files not to report)
+ - Three phases of work:
+ - Collection
+ - Analysis
+ - Reporting
+ - Distinction between:
+ - ignore (files not to collect)
+ - exclude (lines not to report as missed)
+ - omit (files not to report)
- Changes from coverage 2.x:
- Bare "except:" lines now count as executable code.
- Double function decorators: all decorator lines count as executable code.