diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2010-03-20 08:27:30 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-03-20 08:27:30 -0400 |
| commit | 7632f4c60b5fbc856beea7607ce2b448f6b5bbbc (patch) | |
| tree | 6df71b122ddad823f028b3b36a42db34b87b7f0e /CHANGES.txt | |
| parent | e305b35c2a116b4195e79a1da9e6eab9b6013295 (diff) | |
| download | python-coveragepy-git-7632f4c60b5fbc856beea7607ce2b448f6b5bbbc.tar.gz | |
Calculate the pid suffix for data files at the end of the process so that programs calling os.fork will collect data from both child and parent. Fixes issue #56.
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index e705ef36..92ac8828 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -15,14 +15,19 @@ Next version line, which is highlighted on arrival. Added a link back to the index page at the bottom of each HTML page. +- Programs that call ``os.fork`` will properly collect data from both the child + and parent processes. Use ``coverage run -p`` to get two data files that can + be combined with ``coverage combine``. Fixes `issue 56`_. + - Source files can have more than one dot in them (foo.test.py), and will be treated properly while reporting. Fixes `issue 46`_. - Source files with DOS line endings are now properly tokenized for syntax - coloring on non-DOS machines. Fixes `issue 53`_. + coloring on non-DOS machines. Fixes `issue 53`_. .. _issue 46: http://bitbucket.org/ned/coveragepy/issue/46 .. _issue 53: http://bitbucket.org/ned/coveragepy/issue/53 +.. _issue 56: http://bitbucket.org/ned/coveragepy/issue/56 Version 3.3.1, 6 March 2010 |
