summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-10-10 20:21:19 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-10-10 20:44:45 -0400
commit9b54389d91c68b27913ded2898f3a03df7e8e90d (patch)
tree636cc18f20b610c56b959e71216927d89b64a2fe /CHANGES.rst
parent27db7b4e9eb4a7f8115af207a21374fdd2e6d8c7 (diff)
downloadpython-coveragepy-git-9b54389d91c68b27913ded2898f3a03df7e8e90d.tar.gz
fix: make third-party detection work with namespace packages. #1231
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 7e5f7782..696dd4b0 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -22,10 +22,17 @@ This list is detailed and covers changes in each pre-release version.
Unreleased
----------
+- Namespace packages being measured weren't properly handled by the new code
+ that ignores third-party packages. If the namespace package was installed, it
+ was ignored as a third-party package. That problem (`issue 1231`_) is now
+ fixed.
+
- The :meth:`.CoverageData.contexts_by_lineno` method was documented to return
a dict, but was returning a defaultdict. Now it returns a plain dict. It
also no longer returns negative numbered keys.
+.. _issue 1231: https://github.com/nedbat/coveragepy/issues/1231
+
.. _changes_601: