diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-21 07:10:34 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-21 07:10:34 -0400 |
commit | bfb99cc71c24cb22e497c86d57aba482aefc56f8 (patch) | |
tree | 43e066c108b79d5fe3e2086b7f262ec71027f48c /doc/changes.rst | |
parent | 3fb754d683d4ba71b04952c27feaafcdae7225e1 (diff) | |
download | python-coveragepy-git-bfb99cc71c24cb22e497c86d57aba482aefc56f8.tar.gz |
Changed hexversion to version_info, it's friendlier, and just as useful.
Diffstat (limited to 'doc/changes.rst')
-rw-r--r-- | doc/changes.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/changes.rst b/doc/changes.rst index 7ef96fbd..4feb12b2 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -141,8 +141,8 @@ New features: - The COVERAGE_DEBUG environment variable can be used to set the ``[run] debug`` configuration option to control what internal operations are logged. -- A new version identifier is available, `coverage.hexversion`, with semantics - identical to sys.hexversion. +- A new version identifier is available, `coverage.version_info`, a plain tuple + of values similar to `sys.version_info`_. Improvements: @@ -210,7 +210,7 @@ Bug fixes: preventing paradoxical results, fixing `issue 284`_. - Branch coverage couldn't properly handle certain extremely long files. This - is now fixed. (`issue 359`_). + is now fixed, closing `issue 359`_. - Branch coverage didn't understand yield statements properly. Mickie Betz persisted in pursuing this despite Ned's pessimism. Fixes `issue 308`_ and @@ -222,7 +222,7 @@ Bug fixes: - Empty files are now reported as 100% covered in the XML report, not 0% covered. -- The XML report will now create the output directory if need be. Thanks Chris +- The XML report will now create the output directory if need be. Thanks, Chris Rose. - HTML reports no longer raise UnicodeDecodeError if a Python file has @@ -238,6 +238,7 @@ Bug fixes: .. _issue 324: https://bitbucket.org/ned/coveragepy/issue/324/yield-in-loop-confuses-branch-coverage .. _issue 342: https://bitbucket.org/ned/coveragepy/issue/342/console-and-html-coverage-reports-differ .. _issue 359: https://bitbucket.org/ned/coveragepy/issue/359/xml-report-chunk-error +.. _sys.version_info: https://docs.python.org/3/library/sys.html#sys.version_info .. _changes_371: |