Returns copy of the output without stdout and stderr.
(self)
| 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(): |