MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / RunInfo

Class RunInfo

tools/run_examples.py:28–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26
27
28class RunInfo:
29 def __init__(self, backend, elapsed, failed):
30 self.backend = backend
31 self.elapsed = elapsed
32 self.failed = failed
33
34 def __str__(self):
35 s = ""
36 if self.backend:
37 s += f"{self.backend}: "
38 s += f"{self.elapsed}ms"
39 if self.failed:
40 s += " (failed!)"
41 return s
42
43
44def main():

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…