diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-06-13 21:31:10 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-06-13 21:31:10 -0400 |
commit | 341bf5f7153170bc4ae372aa10c0c22ce1c93934 (patch) | |
tree | e775eb0fe0ba5ff649e0a3546a456cdad76caadc | |
parent | 9a5d9061119b047bc5aee5fdfe153fb1bd06151f (diff) | |
download | python-coveragepy-341bf5f7153170bc4ae372aa10c0c22ce1c93934.tar.gz |
Record stuff I'm not doing now so I can do it later.
-rw-r--r-- | TODO.txt | 11 | ||||
-rw-r--r-- | doc/faq.rst | 2 |
2 files changed, 8 insertions, 5 deletions
@@ -100,8 +100,8 @@ x Tricky swapping of collector like figleaf, pycov, et al. (Don't need to do * Community
-- New docs, rather than pointing to Gareth's
- - Min python version is 2.3.
++ New docs, rather than pointing to Gareth's
+ + Min python version is 2.3.
- Three phases of work:
- Collection
- Analysis
@@ -114,11 +114,14 @@ x Tricky swapping of collector like figleaf, pycov, et al. (Don't need to do - Bare "except:" lines now count as executable code.
- Double function decorators: all decorator lines count as executable code.
- Document the .coverage file format.
- - HTML reporting.
+ + HTML reporting.
+ Be sure --help text is complete (-i is missing).
+ Host the project somewhere with a real bug tracker: bitbucket.org
-- Point discussion to TIP
++ Point discussion to TIP
- PEP 8 compliance?
+- References between pages are off:
+ - They have <em> tags around them.
+ - They use #anchors that don't survive the px->html conversion.
* Programmability
diff --git a/doc/faq.rst b/doc/faq.rst index 54be565..2a2d605 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -32,7 +32,7 @@ to run your program with coverage, then your entire program will be monitored. If you are using the :ref:`API <api>`, you need to call coverage.start() before importing the modules that define your functions. -**Q: Does coverage work on Python 3.0?** +**Q: Does coverage work on Python 3.x?** Not yet, but that's next on my list. |