diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-06-02 06:00:38 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-06-02 06:00:38 -0400 |
commit | acf0b107a73255ff8fb3451e076afd59b54e8b81 (patch) | |
tree | 642b63cedc95bca6ec8be16eca782fc247e045c5 | |
parent | 3a86ac852751219d7b336aa489e22e7ba9419532 (diff) | |
download | python-coveragepy-git-acf0b107a73255ff8fb3451e076afd59b54e8b81.tar.gz |
docs: performance improvements closed #1339
-rw-r--r-- | CHANGES.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index db987743..b045321a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -23,12 +23,13 @@ Unreleased - Greatly improved performance on PyPy, and other environments that need the pure Python trace function. Thanks, Carl Friedrich Bolz-Tereick (`pull 1381`_ and `pull 1388`_). Slightly improved performance when using the C - trace function, as most environments do. + trace function, as most environments do. Closes `issue 1339`_. - The conditions for using tomllib from the standard library have been made more precise, so that 3.11 alphas will continue to work. Closes `issue 1390`_. +.. _issue 1339: https://github.com/nedbat/coveragepy/issues/1339 .. _pull 1381: https://github.com/nedbat/coveragepy/pull/1381 .. _pull 1388: https://github.com/nedbat/coveragepy/pull/1388 .. _issue 1390: https://github.com/nedbat/coveragepy/issues/1390 |