<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-coveragepy-git.git/tests/test_parser.py, branch coverage-4.0.2</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>Correct the handling of IndentationError and TokenError</title>
<updated>2015-08-09T13:01:41+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-08-09T13:01:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=3cc5b11a413426b07a51e86eab20a7e9ebab4f2d'/>
<id>3cc5b11a413426b07a51e86eab20a7e9ebab4f2d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix a few more occurrences of 'Coverage' to 'coverage.py'</title>
<updated>2015-07-28T01:52:13+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-07-28T01:52:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=6ff836f35e09dc8a107248b096cc133a423a4c11'/>
<id>6ff836f35e09dc8a107248b096cc133a423a4c11</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://91.123.203.49/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>Clean up some pylint</title>
<updated>2015-07-03T12:56:48+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-07-03T12:56:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=09dd9334a2cc7976c1a42f795eba5864aaf930f0'/>
<id>09dd9334a2cc7976c1a42f795eba5864aaf930f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Files with incorrect encoding declarations are no longer ignored. #351</title>
<updated>2015-05-18T02:28:57+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-05-18T02:28:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=5291dd2839d5adfe64106501e7f9fe4984cf53ac'/>
<id>5291dd2839d5adfe64106501e7f9fe4984cf53ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>All Python source is Unicode internally.</title>
<updated>2015-05-18T00:15:42+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-05-18T00:15:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=9e764b195723b15f29ed8182d1c6e37ac4a52c58'/>
<id>9e764b195723b15f29ed8182d1c6e37ac4a52c58</id>
<content type='text'>
Unfortunately, this meant hacking around a silly Python 2 restriction
(can't compile a Unicode string containing an encoding declaration).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Unfortunately, this meant hacking around a silly Python 2 restriction
(can't compile a Unicode string containing an encoding declaration).
</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://91.123.203.49/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>Tweaks to Mickie's changes.</title>
<updated>2015-04-18T13:29:43+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-04-18T13:29:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=13db3dfa8471333b4410e217fab3e80502075846'/>
<id>13db3dfa8471333b4410e217fab3e80502075846</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Including generator yield statements when doing end of code calculations issue 324</title>
<updated>2015-04-14T20:53:30+00:00</updated>
<author>
<name>Mickie Betz</name>
<email>mbetz08@cmc.edu</email>
</author>
<published>2015-04-14T20:53:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=90189c05e6e8716b6cc6f78cf3e1e98f9fa045c1'/>
<id>90189c05e6e8716b6cc6f78cf3e1e98f9fa045c1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't be confused by files with missing final newlines. #293</title>
<updated>2014-11-29T13:55:08+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2014-11-29T13:55:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=3f544ee33de31e96ca2d25d95da614e9a7a12f50'/>
<id>3f544ee33de31e96ca2d25d95da614e9a7a12f50</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
