diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2011-04-27 09:42:41 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-04-27 09:42:41 -0400 |
| commit | 6c4465b4b6b56dcae5c658b1dee9376441876d5a (patch) | |
| tree | 0e4bc1351d73693900ecc2becd006a466eda21ec /CHANGES.txt | |
| parent | c10bf85ee341d0378b73e729a2bd048d079ca6f2 (diff) | |
| download | python-coveragepy-6c4465b4b6b56dcae5c658b1dee9376441876d5a.tar.gz | |
C trace function now roundtrips properly. Fixes #123 and #125.
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 45dc1dc..3c84daf 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -34,6 +34,10 @@ Version 3.5 coverage.py will issue a warning, at least alerting you to the problem. Closes `issue 93`_. Thanks to Marius Gedminas for the idea. +- The C-based trace function now behaves properly when saved and restored + with ``sys.gettrace()`` and ``sys.settrace()``. This fixes `issue 125`_ + and `issue 123`_. Thanks, Devin Jeanpierre. + - Source files are now opened with Python 3.2's ``tokenize.open()`` where possible, to get the best handling of Python source files with encodings. Closes `issue 107`, thanks, Brett Cannon. @@ -58,7 +62,8 @@ Version 3.5 .. _issue 107: https://bitbucket.org/ned/coveragepy/issue/107/codeparser-not-opening-source-files-with .. _issue 115: https://bitbucket.org/ned/coveragepy/issue/115/fail-gracefully-when-reporting-on-file .. _issue 121: https://bitbucket.org/ned/coveragepy/issue/121/filename-patterns-are-applied-stupidly - +.. _issue 123: https://bitbucket.org/ned/coveragepy/issue/123/pyeval_settrace-used-in-way-that-breaks +.. _issue 125: https://bitbucket.org/ned/coveragepy/issue/125/coverage-removes-decoratortoolss-tracing Version 3.4 --- 19 September 2010 --------------------------------- |
