diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2011-01-30 11:56:52 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-01-30 11:56:52 -0500 |
| commit | 71a76ea9db424bd5532fcf9d226f552ec290554c (patch) | |
| tree | eaa28f2c4fe9c6c572128c439e014442a7b3fa19 /CHANGES.txt | |
| parent | adf371a94bb59e76502611adafc1fb6640608bf6 (diff) | |
| download | python-coveragepy-71a76ea9db424bd5532fcf9d226f552ec290554c.tar.gz | |
A couple more places to use open_source instead of open(fname, 'rU')
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 4ac0e3e..d338e15 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -19,11 +19,16 @@ 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. +- 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. + - Internally, files are now closed explicitly, fixing `issue 104`. Thanks, Brett Cannon. .. _issue 93: http://bitbucket.org/ned/coveragepy/issue/93/copying-a-mock-object-breaks-coverage .. _issue 104: https://bitbucket.org/ned/coveragepy/issue/104/explicitly-close-files +.. _issue 107: https://bitbucket.org/ned/coveragepy/issue/107/codeparser-not-opening-source-files-with Version 3.4 --- 19 September 2010 |
