Lines Matching refs:the_coverage
274 the_coverage = None variable
303 global the_coverage
304 if the_coverage:
935 the_coverage = coverage() variable
939 return the_coverage.use_cache(*args, **kw)
942 return the_coverage.start(*args, **kw)
945 return the_coverage.stop(*args, **kw)
948 return the_coverage.erase(*args, **kw)
951 return the_coverage.begin_recursive(*args, **kw)
954 return the_coverage.end_recursive(*args, **kw)
957 return the_coverage.exclude(*args, **kw)
960 return the_coverage.analysis(*args, **kw)
963 return the_coverage.analysis2(*args, **kw)
966 return the_coverage.report(*args, **kw)
969 return the_coverage.annotate(*args, **kw)
972 return the_coverage.annotate_file(*args, **kw)
979 atexit.register(the_coverage.save)
981 sys.exitfunc = the_coverage.save
985 the_coverage.command_line(sys.argv[1:])