Skip to content

Commit 4ec186a

Browse files
authored
Update coverage/parser.py
1 parent 655c8fd commit 4ec186a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

coverage/parser.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,8 +449,7 @@ def child_parsers(self) -> Iterable[ByteParser]:
449449
def _line_numbers(self) -> Iterable[TLineNo]:
450450
"""Yield the line numbers possible in this code object.
451451
452-
Uses co_lines described in Python/compile.c to find the
453-
line numbers. Produces a sequence: l0, l1, ...
452+
Uses co_lines() to produce a sequence: l0, l1, ...
454453
"""
455454
for _, _, line in self.code.co_lines():
456455
if line:

0 commit comments

Comments
 (0)