MCPcopy Index your code
hub / github.com/python/cpython / is_ignored_filename

Method is_ignored_filename

Lib/trace.py:179–183  ·  view source on GitHub ↗

Return True if the filename does not refer to a file we want to have reported.

(self, filename)

Source from the content-addressed store, hash-verified

177 % (self.infile, err)), file=sys.stderr)
178
179 def is_ignored_filename(self, filename):
180 """Return True if the filename does not refer to a file
181 we want to have reported.
182 """
183 return filename.startswith('<') and filename.endswith('>')
184
185 def update(self, other):
186 """Merge in the data from another CoverageResults"""

Callers 1

write_resultsMethod · 0.95

Calls 2

startswithMethod · 0.45
endswithMethod · 0.45

Tested by

no test coverage detected