Skip to content

Commit b3078e4

Browse files
committed
Update CHANGES for 3.2b3
1 parent e6505f5 commit b3078e4

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGES.txt

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@
22
Change history for Coverage.py
33
------------------------------
44

5-
Version 3.2b3
6-
-------------
5+
Version 3.2b3, 23 November 2009
6+
-------------------------------
77

88
- Fixed a memory leak in the C tracer that was introduced in 3.2b1.
99

10-
- The table of contents in the HTML report is now sortable. Thanks,
11-
`Chris Adams`_.
10+
- Branch coverage improvements:
11+
12+
- Branches to excluded code are ignored.
13+
14+
- The table of contents in the HTML report is now sortable: click the headers
15+
on any column. Thanks, `Chris Adams`_.
1216

1317
.. _Chris Adams: http://improbable.org/chris/
1418

coverage/parser.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,7 @@ def _split_into_chunks(self):
466466
# This is "return None", but is it dummy? A real line
467467
# would be a last chunk all by itself.
468468
if chunks[-1].byte != penult.offset:
469+
# Split the last chunk
469470
last_chunk = chunks[-1]
470471
last_chunk.exits.remove(-1)
471472
last_chunk.exits.add(penult.offset)

0 commit comments

Comments
 (0)