We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f3b227 commit d0db85bCopy full SHA for d0db85b
coverage/parser.py
@@ -715,11 +715,11 @@ def _code_object__FunctionDef(self, node: ast.FunctionDef) -> None:
715
716
def _code_object__ClassDef(self, node: ast.ClassDef) -> None:
717
start = self.line_for_node(node)
718
- exits = self.process_body(node.body)#, from_start=ArcStart(start))
+ exits = self.process_body(node.body)
719
for xit in exits:
720
self.add_arc(
721
xit.lineno, -start, xit.cause,
722
- f"didn't exit the body of class {node.name!r}",
+ f"didn't exit class {node.name!r}",
723
)
724
725
def add_arc(
0 commit comments