summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* When executing files, open them in Universal Newline mode, just as Python ↵Ned Batchelder2009-06-271-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 Batchelder2009-06-241-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 Batchelder2009-06-241-2/+11
| | | | issue #8.
* Bump the version number so it isn't 3.0 anymore, and keep CHANGES up to date.Ned Batchelder2009-06-231-1/+1
|
* Remove the fixed limit on recursion depth. Fixes issue #9.Ned Batchelder2009-06-231-6/+21
|
* Point to new docs; more doc tweaks.Ned Batchelder2009-06-132-2/+2
|
* Bump version number to 3.0Ned Batchelder2009-06-131-2/+1
|
* Make the C code conform to PEP 7.Ned Batchelder2009-06-131-21/+32
|
* Get the flat_rootname right for nested CodeUnits. Thanks, Christian Heimes.Ned Batchelder2009-06-121-3/+8
|
* Minor cleanup: don't use the types module so much.Ned Batchelder2009-06-102-4/+4
|
* Remove an unused importNed Batchelder2009-06-101-1/+1
|
* Expand tabs to spaces before creating HTML output. Fixes bug #6.Ned Batchelder2009-06-101-0/+2
|
* Add a comment about the proper way to import the coverage() class, and ↵Ned Batchelder2009-06-101-1/+10
| | | | remove a now-unused attribute.
* Better way to figure out if a file is installed with Python.Ned Batchelder2009-06-021-2/+7
|
* Fix the formatting of a docstring.Ned Batchelder2009-05-271-5/+5
|
* Print reporting error message so that it fits better.Ned Batchelder2009-05-261-1/+1
|
* HTML annotations should use the short name of the module.Ned Batchelder2009-05-251-1/+1
|
* coverage._analyze is a non-public function.Ned Batchelder2009-05-173-4/+4
|
* When printing exceptions in a report, just use the name of the exception.Ned Batchelder2009-05-171-1/+1
|
* Move the version number up to 3.0 rc1.Ned Batchelder2009-05-161-1/+1
|
* Add a short description to the command line help.Ned Batchelder2009-05-161-0/+1
|
* Don't leave reminders in the docstring.Ned Batchelder2009-05-161-1/+1
|
* Track some things still to be done.Ned Batchelder2009-05-141-0/+1
|
* Add the last few docstrings, and no pylint messages!Ned Batchelder2009-05-132-9/+26
|
* More pylint warnings gone.Ned Batchelder2009-05-131-0/+3
|
* Add some excluded lines to the annotation tests, and write some docstrings ↵Ned Batchelder2009-05-131-0/+22
| | | | for annotate.py
* Give the singleton module interface a way to keep the old behavior of ↵Ned Batchelder2009-05-122-2/+14
| | | | auto-loading and -saving data as needed.
* cover_stdlib wasn't quite right, it controls covering the entire Python ↵Ned Batchelder2009-05-122-10/+11
| | | | library, so cover_pylib it is.
* Less-magical coverage api: load() method loads data from data file, no more ↵Ned Batchelder2009-05-122-10/+8
| | | | save() on process exit.
* How quickly can I fix, re-break, and re-fix a bug?Ned Batchelder2009-05-111-1/+1
|
* Remove some lambdasNed Batchelder2009-05-112-2/+2
|
* Reporting on nothing is OK.Ned Batchelder2009-05-111-1/+1
|
* Re-think the api to set the data file name and suffix.Ned Batchelder2009-05-113-22/+52
|
* More docstrings all around.Ned Batchelder2009-05-094-13/+60
|
* Also make __builtins__ available in main programs.Ned Batchelder2009-05-091-1/+2
|
* Simplify the construction of the __main__ module in run_python_file.Ned Batchelder2009-05-091-6/+3
|
* Change run_python_file again so that it doesn't produce compiled turds in ↵Ned Batchelder2009-05-091-14/+24
| | | | the file system.
* Treat files not ending in .py properly.Ned Batchelder2009-05-071-4/+2
|
* Still noodling on how best to incorporate Detlev Offenbach's code finding patch.Ned Batchelder2009-05-061-4/+7
|
* Better docstrings.Ned Batchelder2009-05-061-6/+11
|
* .pyc files can be moved, so use __file__ to correctly find the source file.Ned Batchelder2009-05-053-4/+19
|
* Change how data is harvested from the collector to simplify api use.Ned Batchelder2009-05-052-12/+12
|
* Lint lintNed Batchelder2009-05-051-11/+8
|
* Even simpler: get rid of the lambdas for the singleton methods.Ned Batchelder2009-05-051-14/+16
|
* Simplify the singleton machinations in the package __init__. Fewer lines of ↵Ned Batchelder2009-05-051-16/+11
| | | | code, and more introspectable.
* Lint clean-ups.Ned Batchelder2009-05-053-12/+13
|
* The HTMLifier didn't deal with runs of spaces with an odd number of spaces ↵Ned Batchelder2009-05-041-0/+5
| | | | properly.
* Added clear_exclude() and get_exclude_list()Ned Batchelder2009-05-041-4/+13
|
* Prefix private methods with underscore, and remove the self.nesting thing, ↵Ned Batchelder2009-05-041-12/+7
| | | | why was it even there?
* Pass values into coverage's contructor rather than set properties.Ned Batchelder2009-05-042-6/+7
|