diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2021-08-14 19:24:10 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-08-14 19:28:18 -0400 |
| commit | f6d3e88ba5b2dab1720281885c99cdf3ce2844bc (patch) | |
| tree | 17acde78dbc8695d7ba19f3a164ebabb30dfde73 /CHANGES.rst | |
| parent | a996e357d1e82c8ed08cda0a43a5ab0fa05f68fd (diff) | |
| download | python-coveragepy-git-f6d3e88ba5b2dab1720281885c99cdf3ce2844bc.tar.gz | |
fix: missing exceptions through with statements in 3.10 aren't considered missing branches. #1205
Diffstat (limited to 'CHANGES.rst')
| -rw-r--r-- | CHANGES.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 0fc84cb3..4baa8a36 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -37,6 +37,10 @@ Unreleased now warnings, to ease the use of coverage across versions. Fixes `issue 1035`_. +- Fix handling of exceptions through context managers in Python 3.10. A missing + exception is no longer considered a missing branch from the with statement. + Fixes `issue 1205`_. + - Fix another rarer instance of "Error binding parameter 0 - probably unsupported type." (`issue 1010`_). @@ -44,6 +48,7 @@ Unreleased .. _issue 1105: https://github.com/nedbat/coveragepy/issues/1105 .. _issue 1163: https://github.com/nedbat/coveragepy/issues/1163 .. _issue 1195: https://github.com/nedbat/coveragepy/issues/1195 +.. _issue 1205: https://github.com/nedbat/coveragepy/issues/1205 .. _changes_60b1: |
