<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-coveragepy-git.git, branch nedbat/debug-1554</title>
<subtitle>github.com: nedbat/coveragepy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/'/>
<entry>
<title>temp: more debugging for #1554</title>
<updated>2023-02-09T05:07:03+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2023-02-09T05:07:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=d10e5e25248b7e89701fe4cb3d9032244fb31c8f'/>
<id>d10e5e25248b7e89701fe4cb3d9032244fb31c8f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: only write "Wrote report" message if report succeeded.</title>
<updated>2023-02-09T05:01:35+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2023-02-09T04:50:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=8f3e7b45b3aabf4d7d01dc470010d3d36f30a0ba'/>
<id>8f3e7b45b3aabf4d7d01dc470010d3d36f30a0ba</id>
<content type='text'>
For example, see [issue
1554](https://github.com/nedbat/coveragepy/issues/1554) for the previous
misleading behavior when the exception being raised wasn't a
CoverageException.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For example, see [issue
1554](https://github.com/nedbat/coveragepy/issues/1554) for the previous
misleading behavior when the exception being raised wasn't a
CoverageException.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: simplify purges_files</title>
<updated>2023-02-08T20:16:05+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2023-02-08T14:11:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=423fa596325acb8f6bcb37a3502cf7853e5d395a'/>
<id>423fa596325acb8f6bcb37a3502cf7853e5d395a</id>
<content type='text'>
Also, move tests to test_data.py, and finish covering the code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also, move tests to test_data.py, and finish covering the code.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: next version will be 7.2.0</title>
<updated>2023-02-08T14:11:05+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2023-02-08T14:11:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=cb7d67962ca8ed9eb176e144b9cfe96373803bf4'/>
<id>cb7d67962ca8ed9eb176e144b9cfe96373803bf4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: an env var to allow no-network tox runs</title>
<updated>2023-02-08T14:10:23+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2023-02-08T14:10:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=c07fee3b9273748f00d238233f7b56a1553a2af3'/>
<id>c07fee3b9273748f00d238233f7b56a1553a2af3</id>
<content type='text'>
(for airplanes)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(for airplanes)
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: add purge_files method to CoverageData + unit tests for it (#1547)</title>
<updated>2023-02-04T23:20:20+00:00</updated>
<author>
<name>Wingware Development</name>
<email>59840981+wingware-dev@users.noreply.github.com</email>
</author>
<published>2023-02-04T23:20:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=a4cd6a01f766359fbe8ff159e0ed87e03e8023ed'/>
<id>a4cd6a01f766359fbe8ff159e0ed87e03e8023ed</id>
<content type='text'>
* Add purge_files method to CoverageData, to allow for selective removal and update
of coverage data.

* Fix assert syntax so it's not true; this code isn't reached in the test unless it fails
and then it would have failed to fail.

* Remove trailing whitespace; did not expect this would matter on a blank line.

* Add type annotations required by mypy

---------

Co-authored-by: Stephan Deibel &lt;sdeibel@wingware.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add purge_files method to CoverageData, to allow for selective removal and update
of coverage data.

* Fix assert syntax so it's not true; this code isn't reached in the test unless it fails
and then it would have failed to fail.

* Remove trailing whitespace; did not expect this would matter on a blank line.

* Add type annotations required by mypy

---------

Co-authored-by: Stephan Deibel &lt;sdeibel@wingware.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>fix: two typing tweaks</title>
<updated>2023-02-04T17:00:32+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2023-02-04T17:00:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=441823f18f705b8a79829cca36142a7f1511477b'/>
<id>441823f18f705b8a79829cca36142a7f1511477b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: paperwork for #1543</title>
<updated>2023-02-03T13:13:47+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2023-01-26T12:24:39+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=131060464647cd4c96fe8b79936d463847e9c0df'/>
<id>131060464647cd4c96fe8b79936d463847e9c0df</id>
<content type='text'>
This is about the fix in commit 96af3eae92a7b5dc1053be194820adf47c17777a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is about the fix in commit 96af3eae92a7b5dc1053be194820adf47c17777a
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: add safety for empty stack on shutdown. (#1543)</title>
<updated>2023-02-03T12:42:18+00:00</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2023-02-03T12:42:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=96af3eae92a7b5dc1053be194820adf47c17777a'/>
<id>96af3eae92a7b5dc1053be194820adf47c17777a</id>
<content type='text'>
* Add safety for empty stack on shutdown.

* Correct line length linting issue.

---------

Co-authored-by: Ned Batchelder &lt;ned@nedbatchelder.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add safety for empty stack on shutdown.

* Correct line length linting issue.

---------

Co-authored-by: Ned Batchelder &lt;ned@nedbatchelder.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>docs: paperwork for py.typed</title>
<updated>2023-02-02T22:40:55+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2023-02-02T22:09:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=b0566a785d4d62db379f4e9707b7cd8c648f9df6'/>
<id>b0566a785d4d62db379f4e9707b7cd8c648f9df6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
