Index: third_party/coverage-3.7.1/doc/changes.rst |
diff --git a/third_party/coverage-3.6/doc/changes.rst b/third_party/coverage-3.7.1/doc/changes.rst |
similarity index 89% |
rename from third_party/coverage-3.6/doc/changes.rst |
rename to third_party/coverage-3.7.1/doc/changes.rst |
index 576c996babf8d2acfc4ddad069e879e00bcc7be6..3ddf88969b7ed77c794b09658a44c8c0c3fede4f 100644 |
--- a/third_party/coverage-3.6/doc/changes.rst |
+++ b/third_party/coverage-3.7.1/doc/changes.rst |
@@ -25,6 +25,8 @@ Major change history for coverage.py |
:history: 20121129T060100, updated for 3.6b1. |
:history: 20121223T180600, updated for 3.6b2. |
:history: 20130105T173500, updated for 3.6 |
+:history: 20131005T205700, updated for 3.7 |
+:history: 20131212T213100, updated for 3.7.1 |
These are the major changes for coverage.py. For a more complete change |
@@ -33,6 +35,76 @@ history, see the `CHANGES.txt`_ file in the source tree. |
.. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt |
+.. _changes_371: |
+ |
+Version 3.7.1 --- 13 December 2013 |
+---------------------------------- |
+ |
+- Improved the speed of HTML report generation by about 20%. |
+ |
+- Fixed the mechanism for finding OS-installed static files for the HTML report |
+ so that it will actually find OS-installed static files. |
+ |
+ |
+.. _changes_37: |
+ |
+Version 3.7 --- 6 October 2013 |
+------------------------------ |
+ |
+- Added the ``--debug`` switch to ``coverage run``. It accepts a list of |
+ options indicating the type of internal activity to log to stderr. For |
+ details, see :ref:`the run --debug options <cmd_run_debug>`. |
+ |
+- Improved the branch coverage facility, fixing `issue 92`_ and `issue 175`_. |
+ |
+- Running code with ``coverage run -m`` now behaves more like Python does, |
+ setting sys.path properly, which fixes `issue 207`_ and `issue 242`_. |
+ |
+- Coverage can now run .pyc files directly, closing `issue 264`_. |
+ |
+- Coverage properly supports .pyw files, fixing `issue 261`_. |
+ |
+- Omitting files within a tree specified with the ``source`` option would |
+ cause them to be incorrectly marked as unexecuted, as described in |
+ `issue 218`_. This is now fixed. |
+ |
+- When specifying paths to alias together during data combining, you can now |
+ specify relative paths, fixing `issue 267`_. |
+ |
+- Most file paths can now be specified with username expansion (``~/src``, or |
+ ``~build/src``, for example), and with environment variable expansion |
+ (``build/$BUILDNUM/src``). |
+ |
+- Trying to create an XML report with no files to report on, would cause a |
+ ZeroDivideError, but no longer does, fixing `issue 250`_. |
+ |
+- When running a threaded program under the Python tracer, coverage no longer |
+ issues a spurious warning about the trace function changing: "Trace function |
+ changed, measurement is likely wrong: None." This fixes `issue 164`_. |
+ |
+- Static files necessary for HTML reports are found in system-installed places, |
+ to ease OS-level packaging of coverage.py. Closes `issue 259`_. |
+ |
+- Source files with encoding declarations, but a blank first line, were not |
+ decoded properly. Now they are. Thanks, Roger Hu. |
+ |
+- The source kit now includes the ``__main__.py`` file in the root coverage |
+ directory, fixing `issue 255`_. |
+ |
+.. _issue 92: https://bitbucket.org/ned/coveragepy/issue/92/finally-clauses-arent-treated-properly-in |
+.. _issue 164: https://bitbucket.org/ned/coveragepy/issue/164/trace-function-changed-warning-when-using |
+.. _issue 175: https://bitbucket.org/ned/coveragepy/issue/175/branch-coverage-gets-confused-in-certain |
+.. _issue 207: https://bitbucket.org/ned/coveragepy/issue/207/run-m-cannot-find-module-or-package-in |
+.. _issue 242: https://bitbucket.org/ned/coveragepy/issue/242/running-a-two-level-package-doesnt-work |
+.. _issue 218: https://bitbucket.org/ned/coveragepy/issue/218/run-command-does-not-respect-the-omit-flag |
+.. _issue 250: https://bitbucket.org/ned/coveragepy/issue/250/uncaught-zerodivisionerror-when-generating |
+.. _issue 255: https://bitbucket.org/ned/coveragepy/issue/255/directory-level-__main__py-not-included-in |
+.. _issue 259: https://bitbucket.org/ned/coveragepy/issue/259/allow-use-of-system-installed-third-party |
+.. _issue 261: https://bitbucket.org/ned/coveragepy/issue/261/pyw-files-arent-reported-properly |
+.. _issue 264: https://bitbucket.org/ned/coveragepy/issue/264/coverage-wont-run-pyc-files |
+.. _issue 267: https://bitbucket.org/ned/coveragepy/issue/267/relative-path-aliases-dont-work |
+ |
+ |
Version 3.6 --- 5 January 2013 |
------------------------------ |
@@ -73,10 +145,10 @@ Docs: |
- Added a page to the docs about :doc:`contributing <contributing>` to |
coverage.py, closing `issue 171`_. |
- |
+ |
- Added a page to the docs about :doc:`troublesome situations <trouble>`, |
closing `issue 226`_. |
- |
+ |
- Docstrings for the legacy singleton methods are more helpful. Thanks Marius |
Gedminas. Closes `issue 205`_. |