MCPcopy Index your code
hub / github.com/cirosantilli/linux-kernel-module-cheat / __str__

Method __str__

common.py:1106–1113  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1104 self.result = result
1105 self.ellapsed_seconds = ellapsed_seconds
1106 def __str__(self):
1107 out = []
1108 if self.result is not None:
1109 out.append(self.result.name)
1110 if self.ellapsed_seconds is not None:
1111 out.append(LkmcCliFunction.seconds_to_hms(self.ellapsed_seconds))
1112 out.append(self.test_id)
1113 return ' '.join(out)
1114
1115class TestCliFunction(LkmcCliFunction):
1116 '''

Callers

nothing calls this directly

Calls 2

seconds_to_hmsMethod · 0.80
joinMethod · 0.80

Tested by

no test coverage detected