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,*args,**kw)
| 107 | |
| 108 | |
| 109 | def timing(func,*args,**kw): |
| 110 | """timing(func,*args,**kw) -> t_total |
| 111 | |
| 112 | Execute a function once, return the elapsed total CPU time in |
| 113 | seconds. This is just the first value in timings_out().""" |
| 114 | |
| 115 | return timings_out(1,func,*args,**kw)[0] |
| 116 |
nothing calls this directly
no test coverage detected