Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix the name of CHANGES.txt | Ned Batchelder | 2009-07-06 | 1 | -1/+1 |
| | |||||
* | A better way to fix the missing-return-after-exception problem in the trace ↵ | Ned Batchelder | 2009-07-06 | 2 | -70/+71 |
| | | | | function: no pyexpat specifics, and py 2.3 still uses C trace function. | ||||
* | Fix Python 2.3's exception tracing by always using a dumbed-down Python ↵ | Ned Batchelder | 2009-07-04 | 1 | -18/+52 |
| | | | | tracer there. | ||||
* | Move the backward-compatibility definitions to a common file. There seems to ↵ | Ned Batchelder | 2009-07-03 | 3 | -18/+26 |
| | | | | be no pretty way to do this. | ||||
* | Clean up the `set` definitions for 2.3 (these should go someplace common). | Ned Batchelder | 2009-07-03 | 1 | -3/+4 |
| | |||||
* | I meant for the list of lines to be sorted. | Ned Batchelder | 2009-07-03 | 1 | -2/+14 |
| | |||||
* | Refactor a little bit so the tests can get at the data more easily. | Ned Batchelder | 2009-07-03 | 1 | -6/+9 |
| | |||||
* | Expat bug reported and noted. | Ned Batchelder | 2009-06-28 | 1 | -3/+6 |
| | |||||
* | Epic bug: pyexpat fiddles incorrectly with the systrace function. This is a ↵ | Ned Batchelder | 2009-06-28 | 1 | -0/+19 |
| | | | | hack to make it behave correctly with coverage.py. Fixes bug #10. | ||||
* | Add a bunch of logging to tracer.c to help find tracing problems. | Ned Batchelder | 2009-06-28 | 1 | -9/+66 |
| | |||||
* | When executing files, open them in Universal Newline mode, just as Python ↵ | Ned Batchelder | 2009-06-27 | 1 | -1/+1 |
| | | | | itself does. Makes it possible to run Python from Windows on Mac, for example. | ||||
* | A seemingly minor change makes all the difference. The nose plugin cover.py ↵ | Ned Batchelder | 2009-06-24 | 1 | -1/+1 |
| | | | | excludes reporting on any module imported when coverage started. It imports coverage, then records the list of modules imported. With the coverage.collector import in the constructor, coverage.collector wasn't imported when the snapshot was taken, so coverage.collector appeared in the nose output. By moving the import to module scope, it will be imported early enough to be skipped. Fixes issue #8. | ||||
* | Don't measure the coverage package itself. Inspired by, but does not fix, ↵ | Ned Batchelder | 2009-06-24 | 1 | -2/+11 |
| | | | | issue #8. | ||||
* | Bump the version number so it isn't 3.0 anymore, and keep CHANGES up to date. | Ned Batchelder | 2009-06-23 | 1 | -1/+1 |
| | |||||
* | Remove the fixed limit on recursion depth. Fixes issue #9. | Ned Batchelder | 2009-06-23 | 1 | -6/+21 |
| | |||||
* | Point to new docs; more doc tweaks. | Ned Batchelder | 2009-06-13 | 2 | -2/+2 |
| | |||||
* | Bump version number to 3.0 | Ned Batchelder | 2009-06-13 | 1 | -2/+1 |
| | |||||
* | Make the C code conform to PEP 7. | Ned Batchelder | 2009-06-13 | 1 | -21/+32 |
| | |||||
* | Get the flat_rootname right for nested CodeUnits. Thanks, Christian Heimes. | Ned Batchelder | 2009-06-12 | 1 | -3/+8 |
| | |||||
* | Minor cleanup: don't use the types module so much. | Ned Batchelder | 2009-06-10 | 2 | -4/+4 |
| | |||||
* | Remove an unused import | Ned Batchelder | 2009-06-10 | 1 | -1/+1 |
| | |||||
* | Expand tabs to spaces before creating HTML output. Fixes bug #6. | Ned Batchelder | 2009-06-10 | 1 | -0/+2 |
| | |||||
* | Add a comment about the proper way to import the coverage() class, and ↵ | Ned Batchelder | 2009-06-10 | 1 | -1/+10 |
| | | | | remove a now-unused attribute. | ||||
* | Better way to figure out if a file is installed with Python. | Ned Batchelder | 2009-06-02 | 1 | -2/+7 |
| | |||||
* | Fix the formatting of a docstring. | Ned Batchelder | 2009-05-27 | 1 | -5/+5 |
| | |||||
* | Print reporting error message so that it fits better. | Ned Batchelder | 2009-05-26 | 1 | -1/+1 |
| | |||||
* | HTML annotations should use the short name of the module. | Ned Batchelder | 2009-05-25 | 1 | -1/+1 |
| | |||||
* | coverage._analyze is a non-public function. | Ned Batchelder | 2009-05-17 | 3 | -4/+4 |
| | |||||
* | When printing exceptions in a report, just use the name of the exception. | Ned Batchelder | 2009-05-17 | 1 | -1/+1 |
| | |||||
* | Move the version number up to 3.0 rc1. | Ned Batchelder | 2009-05-16 | 1 | -1/+1 |
| | |||||
* | Add a short description to the command line help. | Ned Batchelder | 2009-05-16 | 1 | -0/+1 |
| | |||||
* | Don't leave reminders in the docstring. | Ned Batchelder | 2009-05-16 | 1 | -1/+1 |
| | |||||
* | Track some things still to be done. | Ned Batchelder | 2009-05-14 | 1 | -0/+1 |
| | |||||
* | Add the last few docstrings, and no pylint messages! | Ned Batchelder | 2009-05-13 | 2 | -9/+26 |
| | |||||
* | More pylint warnings gone. | Ned Batchelder | 2009-05-13 | 1 | -0/+3 |
| | |||||
* | Add some excluded lines to the annotation tests, and write some docstrings ↵ | Ned Batchelder | 2009-05-13 | 1 | -0/+22 |
| | | | | for annotate.py | ||||
* | Give the singleton module interface a way to keep the old behavior of ↵ | Ned Batchelder | 2009-05-12 | 2 | -2/+14 |
| | | | | auto-loading and -saving data as needed. | ||||
* | cover_stdlib wasn't quite right, it controls covering the entire Python ↵ | Ned Batchelder | 2009-05-12 | 2 | -10/+11 |
| | | | | library, so cover_pylib it is. | ||||
* | Less-magical coverage api: load() method loads data from data file, no more ↵ | Ned Batchelder | 2009-05-12 | 2 | -10/+8 |
| | | | | save() on process exit. | ||||
* | How quickly can I fix, re-break, and re-fix a bug? | Ned Batchelder | 2009-05-11 | 1 | -1/+1 |
| | |||||
* | Remove some lambdas | Ned Batchelder | 2009-05-11 | 2 | -2/+2 |
| | |||||
* | Reporting on nothing is OK. | Ned Batchelder | 2009-05-11 | 1 | -1/+1 |
| | |||||
* | Re-think the api to set the data file name and suffix. | Ned Batchelder | 2009-05-11 | 3 | -22/+52 |
| | |||||
* | More docstrings all around. | Ned Batchelder | 2009-05-09 | 4 | -13/+60 |
| | |||||
* | Also make __builtins__ available in main programs. | Ned Batchelder | 2009-05-09 | 1 | -1/+2 |
| | |||||
* | Simplify the construction of the __main__ module in run_python_file. | Ned Batchelder | 2009-05-09 | 1 | -6/+3 |
| | |||||
* | Change run_python_file again so that it doesn't produce compiled turds in ↵ | Ned Batchelder | 2009-05-09 | 1 | -14/+24 |
| | | | | the file system. | ||||
* | Treat files not ending in .py properly. | Ned Batchelder | 2009-05-07 | 1 | -4/+2 |
| | |||||
* | Still noodling on how best to incorporate Detlev Offenbach's code finding patch. | Ned Batchelder | 2009-05-06 | 1 | -4/+7 |
| | |||||
* | Better docstrings. | Ned Batchelder | 2009-05-06 | 1 | -6/+11 |
| |