commit | b646aa178983cb1b290d1f86be149704c8957f02 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Fri Apr 03 02:45:36 2009 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Fri Apr 03 02:45:36 2009 +0000 |
tree | 6fa76394f6312372541586fa37cd4464e9220d97 | |
parent | 85737b875f55058985a794e89ab0698f27743b11 [diff] [blame] |
Localize the function lookup in timeit.
diff --git a/Lib/timeit.py b/Lib/timeit.py index 5ce9b4a..7b9b72c 100644 --- a/Lib/timeit.py +++ b/Lib/timeit.py
@@ -92,11 +92,11 @@ def _template_func(setup, func): """Create a timer function. Used if the "statement" is a callable.""" - def inner(_it, _timer): + def inner(_it, _timer, _func=func): setup() _t0 = _timer() for _i in _it: - func() + _func() _t1 = _timer() return _t1 - _t0 return inner