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 6cb802d commit 50de80dCopy full SHA for 50de80d
coverage/parser.py
@@ -198,12 +198,6 @@ def _raw_parse(self) -> None:
198
byte_parser = ByteParser(self.text, filename=self.filename)
199
self.raw_statements.update(byte_parser._find_statements())
200
201
- # The first line of modules can lie and say 1 always, even if the first
202
- # line of code is later. If so, map 1 to the actual first line of the
203
- # module.
204
- if env.PYBEHAVIOR.module_firstline_1 and self._multiline and self.raw_statements:
205
- self._multiline[1] = min(self.raw_statements)
206
-
207
self.excluded = self.first_lines(self.excluded)
208
209
# AST lets us find classes, docstrings, and decorator-affected
0 commit comments