MCPcopy Create free account
hub / github.com/nodejs/node / without_text

Method without_text

deps/v8/tools/testrunner/objects/output.py:53–58  ·  view source on GitHub ↗

Returns copy of the output without stdout and stderr.

(self)

Source from the content-addressed store, hash-verified

51 return self.end_time - self.start_time
52
53 def without_text(self):
54 """Returns copy of the output without stdout and stderr."""
55 other = copy.copy(self)
56 other.stdout = None
57 other.stderr = None
58 return other
59
60 def HasCrashed(self):
61 if utils.IsWindows():

Callers 1

_create_resultMethod · 0.80

Calls 1

copyMethod · 0.65

Tested by

no test coverage detected