summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-11-03 18:23:53 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-11-03 18:23:53 -0400
commite1331826649b26465f090ad9e3100ea0870aefc3 (patch)
treecf58a6536bc7dea5127147485ad0f196c3918b5e
parent25ef14c52abbac9c136fdb674ad0fa1b5ecc847f (diff)
downloadpython-coveragepy-git-e1331826649b26465f090ad9e3100ea0870aefc3.tar.gz
Record that a bug was fixed. #700
-rw-r--r--CHANGES.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 426246fe..b1c680b3 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -125,6 +125,9 @@ Version 5.0a1 --- 2018-06-05
- The location of the configuration file can now be specified with a
``COVERAGE_RCFILE`` environment variable, as requested in `issue 650`_.
+- Namespace packages are supported on Python 3.7, where they used to cause
+ TypeErrors about path being None. Fixes `issue 700`_.
+
- A new warning (``already-imported``) is issued if measurable files have
already been imported before coverage.py started measurement. See
:ref:`cmd_warnings` for more information.
@@ -136,7 +139,7 @@ Version 5.0a1 --- 2018-06-05
.. _issue 625: https://bitbucket.org/ned/coveragepy/issues/625/lstat-dominates-in-the-case-of-small
.. _issue 650: https://bitbucket.org/ned/coveragepy/issues/650/allow-setting-configuration-file-location
-
+.. _issue 700: https://github.com/nedbat/coveragepy/issues/700
.. _changes_451: