check cost time from lst Returns: TODO Raises: NULL
(self)
| 78 | return cost |
| 79 | |
| 80 | def interval(self): |
| 81 | """check cost time from lst |
| 82 | Returns: TODO |
| 83 | |
| 84 | Raises: NULL |
| 85 | """ |
| 86 | end = time.time() |
| 87 | cost = end - self._last |
| 88 | self._last = end |
| 89 | return cost |
| 90 | |
| 91 | def ending(self): |
| 92 | """ending checking and log |
no outgoing calls
no test coverage detected