blob: b420e6f7658f2b02b3da63a7ec7629ea23bef546 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
.. _change:
:history: 20090524T134300, brand new docs.
:history: 20090613T164000, final touches for 3.0
------------------------------------
Major change history for coverage.py
------------------------------------
These are the major changes for coverage.py. For a more complete change history,
see the `CHANGES.txt <http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt>`_
file.
Version 3.0b3, 16 May 2009
--------------------------
- Added parameters to coverage.__init__ for options that had been set on the
coverage object itself.
- Added clear_exclude() and get_exclude_list() methods for programmatic
manipulation of the exclude regexes.
- Added coverage.load() to read previously-saved data from the data file.
- When using the object api (that is, constructing a coverage() object), data
is no longer saved automatically on process exit. You can re-enable it with
the auto_data=True parameter on the coverage() constructor. The module-level
interface still uses automatic saving.
Version 3.0b2, 30 April 2009
----------------------------
HTML reporting, and continued refactoring.
- HTML reports and annotation of source files: use the new -b (browser) switch.
Thanks to George Song for code, inspiration and guidance.
- Code in the Python standard library is not measured by default. If you need
to measure standard library code, use the -L command-line switch during
execution, or the cover_pylib=True argument to the coverage() constructor.
- coverage.annotate_file is no longer available.
- Removed the undocumented cache_file argument to coverage.usecache().
Version 3.0b1, 7 March 2009
---------------------------
Major overhaul.
- Coverage is now a package rather than a module. Functionality has been split
into classes.
- The trace function is implemented in C for speed. Coverage runs are now
much faster. Thanks to David Christian for productive micro-sprints and
other encouragement.
- The minimum supported Python version is 2.3.
|