class documentation

class SubprocessResult(subprocess.CompletedProcess):

Constructor: SubprocessResult(*args, peak_memory, total_time, **kwargs)

View In Hierarchy

Extension of subprocess.CompletedProcess that also carries peak memory usage.

Method __init__ Initialize a subprocess result with memory and timing data.
Instance Variable peak_memory Undocumented
Instance Variable total_time Undocumented
def __init__(self, *args, peak_memory: int, total_time: float, **kwargs):

Initialize a subprocess result with memory and timing data.

peak_memory =

Undocumented

total_time =

Undocumented