Home | History | Annotate | Download | only in contrib

Lines Matching refs:missing

348             '-m': 'show-missing',
411 show_missing = settings.get('show-missing')
767 missing = []
774 missing.append(line)
775 return (filename, statements, excluded, missing,
776 self.format_lines(statements, missing))
829 header = header + " Missing"
840 _, statements, _, missing, readable = self.analysis2(morf)
842 m = n - len(missing)
879 filename, statements, excluded, missing, _ = self.analysis2(morf)
880 self.annotate_file(filename, statements, excluded, missing, directory)
887 def annotate_file(self, filename, statements, excluded, missing, directory=None):
907 while j < len(missing) and missing[j] < lineno:
910 covered = j >= len(missing) or missing[j] > lineno
916 if i >= len(statements) and j >= len(missing):
918 elif i >= len(statements) or j >= len(missing):
920 elif statements[i] == missing[j]:
1032 # other quirks of Python execution aren't mistakenly identified as missing