timing(func,*args,**kw) -> t_total Execute a function once, return the elapsed total CPU time in seconds. This is just the first value in timings_out().
(func: Callable[..., Any], *args: Any, **kw: Any)
| 127 | |
| 128 | |
| 129 | def timing(func: Callable[..., Any], *args: Any, **kw: Any) -> float: |
| 130 | """timing(func,*args,**kw) -> t_total |
| 131 | |
| 132 | Execute a function once, return the elapsed total CPU time in |
| 133 | seconds. This is just the first value in timings_out().""" |
| 134 | |
| 135 | return timings_out(1,func,*args,**kw)[0] |
| 136 |
nothing calls this directly
no test coverage detected
searching dependent graphs…