<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-coveragepy-git.git/coverage/pytracer.py, branch coverage-4.3</title>
<subtitle>github.com: nedbat/coveragepy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/'/>
<entry>
<title>A thread tweak suggested in #245</title>
<updated>2016-05-08T02:15:48+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-05-08T02:15:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=36d94fb250dcc838a0fd8f83bb8a6ad53665cb37'/>
<id>36d94fb250dcc838a0fd8f83bb8a6ad53665cb37</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Entry arcs now use the negative first line of the code object instead of -1.</title>
<updated>2016-03-02T12:05:27+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-03-02T12:05:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=292becfc6657b0346b190a6489397e7fb6407cd3'/>
<id>292becfc6657b0346b190a6489397e7fb6407cd3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>OMG, sometimes the hardest problems have simple solutions. Now metacoverage works with the Python tracer.</title>
<updated>2015-08-30T12:55:03+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-08-30T12:55:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=98b5bc2004fd9ccbd07f0ea86cfc059cde37b11b'/>
<id>98b5bc2004fd9ccbd07f0ea86cfc059cde37b11b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Too many things named "arcs". Rename the booleans.</title>
<updated>2015-08-08T11:00:52+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-08-08T11:00:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=763a7a65a2acdb5642e515e0c16b91044dee74d2'/>
<id>763a7a65a2acdb5642e515e0c16b91044dee74d2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add license mention to the top of all files. #313.</title>
<updated>2015-07-24T14:43:46+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-07-24T14:43:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=b99fbf1ff6a06309ecf6cce8d6ae97dee5626784'/>
<id>b99fbf1ff6a06309ecf6cce8d6ae97dee5626784</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix branch coverage for yield statements. #308 #324</title>
<updated>2015-04-20T16:15:37+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-04-20T16:15:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=de4cfde7b1f7b3d3bee11a26b4c1bb3ae598259c'/>
<id>de4cfde7b1f7b3d3bee11a26b4c1bb3ae598259c</id>
<content type='text'>
Turns out the "call" and "return" trace events are really "start frame" and
"end frame".  They happen not only when functions are entered and left, but
when generators yield and resume.  We aren't interested in arcs into and out
of yield statements, so the trace functions look more closely to see what's
really happening, and record an arc in human-friendly terms.

Thanks for Mickie Betz for pushing on this bug, although her code is no
longer here. :(
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Turns out the "call" and "return" trace events are really "start frame" and
"end frame".  They happen not only when functions are entered and left, but
when generators yield and resume.  We aren't interested in arcs into and out
of yield statements, so the trace functions look more closely to see what's
really happening, and record an arc in human-friendly terms.

Thanks for Mickie Betz for pushing on this bug, although her code is no
longer here. :(
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove 4 pylint warnings.</title>
<updated>2015-02-09T15:09:38+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-02-09T15:09:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=3f5d571b0146531ceae5c57ed15fafaca3202be7'/>
<id>3f5d571b0146531ceae5c57ed15fafaca3202be7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Plugin support is now only in the CTracer, not in the PyTracer.</title>
<updated>2015-02-09T14:41:28+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-02-09T14:41:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=5f335f063449a359d855546fc3d439f24f84d466'/>
<id>5f335f063449a359d855546fc3d439f24f84d466</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make sure check_include isn't called more than once per file.</title>
<updated>2014-11-28T23:02:57+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2014-11-28T23:02:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=025cc4ab92236971adc3961e0a177019fed2e6fd'/>
<id>025cc4ab92236971adc3961e0a177019fed2e6fd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use the on/off condition to turn off a little more code in PyTracer.</title>
<updated>2014-11-28T20:51:20+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2014-11-28T20:51:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=57817442e05ecba7a7e25a1cd60796a42eb37b26'/>
<id>57817442e05ecba7a7e25a1cd60796a42eb37b26</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
