(suspect)
| 277 | |
| 278 | |
| 279 | def _pprint_suspect(suspect): |
| 280 | print( |
| 281 | "Most suspicious memory allocation in traceback " |
| 282 | "(only printing out this one, but all (less suspicious)" |
| 283 | " suspects will be investigated as well):" |
| 284 | ) |
| 285 | print("\n".join(suspect.traceback.format())) |
| 286 | print(f"Increase total={suspect.memory_increase}B") |
| 287 | print(f"Slope={suspect.slope} B/detection") |
| 288 | print(f"Rval={suspect.rvalue}") |
no test coverage detected
searching dependent graphs…