Returns elapsed time from start till now >>> calculateDeltaSeconds(0) > 1151721660 True
(start)
| 2516 | return sqrt(_ / (len(values) - 1)) |
| 2517 | |
| 2518 | def calculateDeltaSeconds(start): |
| 2519 | """ |
| 2520 | Returns elapsed time from start till now |
| 2521 | |
| 2522 | >>> calculateDeltaSeconds(0) > 1151721660 |
| 2523 | True |
| 2524 | """ |
| 2525 | |
| 2526 | return time.time() - start |
| 2527 | |
| 2528 | def initCommonOutputs(): |
| 2529 | """ |
no outgoing calls
no test coverage detected
searching dependent graphs…