@@ -383,7 +383,7 @@ Version 5.0a6 — 2019-07-16
383
383
argument, `no_disk ` (default: False). Setting it to True prevents writing
384
384
any data to the disk. This is useful for transient data objects.
385
385
386
- - Added the classmethod :meth: `.Coverage.current ` to get the latest started
386
+ - Added the class method :meth: `.Coverage.current ` to get the latest started
387
387
Coverage instance.
388
388
389
389
- Multiprocessing support in Python 3.8 was broken, but is now fixed. Closes
@@ -556,7 +556,7 @@ Version 5.0a2 — 2018-09-03
556
556
557
557
- Development moved from `Bitbucket `_ to `GitHub `_.
558
558
559
- - HTML files no longer have trailing and extra whitespace .
559
+ - HTML files no longer have trailing and extra white space .
560
560
561
561
- The sort order in the HTML report is stored in local storage rather than
562
562
cookies, closing `issue 611 `_. Thanks, Federico Bond.
@@ -794,7 +794,7 @@ Version 4.4b1 — 2017-04-04
794
794
also continue measurement. Both `issue 79 `_ and `issue 448 `_ described this
795
795
problem, and have been fixed.
796
796
797
- - Plugins can now find unexecuted files if they choose, by implementing the
797
+ - Plugins can now find un-executed files if they choose, by implementing the
798
798
`find_executable_files ` method. Thanks, Emil Madsen.
799
799
800
800
- Minimal IronPython support. You should be able to run IronPython programs
@@ -1202,7 +1202,7 @@ Version 4.1b2 — 2016-01-23
1202
1202
- The XML report now produces correct package names for modules found in
1203
1203
directories specified with ``source= ``. Fixes `issue 465 `_.
1204
1204
1205
- - ``coverage report `` won't produce trailing whitespace .
1205
+ - ``coverage report `` won't produce trailing white space .
1206
1206
1207
1207
.. _issue 465 : https://github.com/nedbat/coveragepy/issues/465
1208
1208
.. _issue 466 : https://github.com/nedbat/coveragepy/issues/466
@@ -1532,7 +1532,7 @@ Version 4.0a6 — 2015-06-21
1532
1532
- Files with incorrect encoding declaration comments are no longer ignored by
1533
1533
the reporting commands, fixing `issue 351 `_.
1534
1534
1535
- - HTML reports now include a timestamp in the footer, closing `issue 299 `_.
1535
+ - HTML reports now include a time stamp in the footer, closing `issue 299 `_.
1536
1536
Thanks, Conrad Ho.
1537
1537
1538
1538
- HTML reports now begrudgingly use double-quotes rather than single quotes,
@@ -1685,7 +1685,7 @@ Version 4.0a2 — 2015-01-14
1685
1685
`issue 328 `_. Thanks, Buck Evan.
1686
1686
1687
1687
- The regex for matching exclusion pragmas has been fixed to allow more kinds
1688
- of whitespace , fixing `issue 334 `_.
1688
+ of white space , fixing `issue 334 `_.
1689
1689
1690
1690
- Made some PyPy-specific tweaks to improve speed under PyPy. Thanks, Alex
1691
1691
Gaynor.
@@ -1739,7 +1739,7 @@ Version 4.0a1 — 2014-09-27
1739
1739
`issue 285 `_. Thanks, Chris Rose.
1740
1740
1741
1741
- HTML reports no longer raise UnicodeDecodeError if a Python file has
1742
- undecodable characters, fixing `issue 303 `_ and `issue 331 `_.
1742
+ un-decodable characters, fixing `issue 303 `_ and `issue 331 `_.
1743
1743
1744
1744
- The annotate command will now annotate all files, not just ones relative to
1745
1745
the current directory, fixing `issue 57 `_.
@@ -1791,7 +1791,7 @@ Version 3.7 — 2013-10-06
1791
1791
- Coverage.py properly supports .pyw files, fixing `issue 261 `_.
1792
1792
1793
1793
- Omitting files within a tree specified with the ``source `` option would
1794
- cause them to be incorrectly marked as unexecuted , as described in
1794
+ cause them to be incorrectly marked as un-executed , as described in
1795
1795
`issue 218 `_. This is now fixed.
1796
1796
1797
1797
- When specifying paths to alias together during data combining, you can now
@@ -1802,7 +1802,7 @@ Version 3.7 — 2013-10-06
1802
1802
(``build/$BUILDNUM/src ``).
1803
1803
1804
1804
- Trying to create an XML report with no files to report on, would cause a
1805
- ZeroDivideError , but no longer does, fixing `issue 250 `_.
1805
+ ZeroDivisionError , but no longer does, fixing `issue 250 `_.
1806
1806
1807
1807
- When running a threaded program under the Python tracer, coverage.py no
1808
1808
longer issues a spurious warning about the trace function changing: "Trace
@@ -1905,7 +1905,7 @@ Version 3.6b1 — 2012-11-28
1905
1905
Thanks, Marcus Cobden.
1906
1906
1907
1907
- Coverage percentage metrics are now computed slightly differently under
1908
- branch coverage. This means that completely unexecuted files will now
1908
+ branch coverage. This means that completely un-executed files will now
1909
1909
correctly have 0% coverage, fixing `issue 156 `_. This also means that your
1910
1910
total coverage numbers will generally now be lower if you are measuring
1911
1911
branch coverage.
@@ -2068,7 +2068,7 @@ Version 3.5.2b1 — 2012-04-29
2068
2068
- Now the exit status of your product code is properly used as the process
2069
2069
status when running ``python -m coverage run ... ``. Thanks, JT Olds.
2070
2070
2071
- - When installing into pypy , we no longer attempt (and fail) to compile
2071
+ - When installing into PyPy , we no longer attempt (and fail) to compile
2072
2072
the C tracer function, closing `issue 166 `_.
2073
2073
2074
2074
.. _issue 142 : https://github.com/nedbat/coveragepy/issues/142
@@ -2234,7 +2234,7 @@ Version 3.4 — 2010-09-19
2234
2234
Version 3.4b2 — 2010-09-06
2235
2235
--------------------------
2236
2236
2237
- - Completely unexecuted files can now be included in coverage results, reported
2237
+ - Completely un-executed files can now be included in coverage results, reported
2238
2238
as 0% covered. This only happens if the --source option is specified, since
2239
2239
coverage.py needs guidance about where to look for source files.
2240
2240
@@ -2374,7 +2374,7 @@ Version 3.3 — 2010-02-24
2374
2374
`config_file=False `.
2375
2375
2376
2376
- Fixed a problem with nested loops having their branch possibilities
2377
- mischaracterized : `issue 39 `_.
2377
+ mis-characterized : `issue 39 `_.
2378
2378
2379
2379
- Added coverage.process_start to enable coverage measurement when Python
2380
2380
starts.
0 commit comments