diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-03-16 17:33:24 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-03-16 17:33:24 -0400 |
commit | 832ebeb9d4910f15130e4e337204f18b0ed7b37b (patch) | |
tree | 34ecfb902ffbf4ef80c5a7775527183e86ef39c6 /Lib/timeit.py | |
parent | 4b3181804227a5a4148fdf60b6655a989b45a8ff (diff) | |
parent | a88da67bcbf8b87af613751796998538afb26be0 (diff) | |
download | cpython-git-832ebeb9d4910f15130e4e337204f18b0ed7b37b.tar.gz |
Merge #11578 test from 3.2.
Diffstat (limited to 'Lib/timeit.py')
-rw-r--r-- | Lib/timeit.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Lib/timeit.py b/Lib/timeit.py index 5c613fce03..8e04645262 100644 --- a/Lib/timeit.py +++ b/Lib/timeit.py @@ -232,10 +232,10 @@ def repeat(stmt="pass", setup="pass", timer=default_timer, """Convenience function to create Timer object and call repeat method.""" return Timer(stmt, setup, timer).repeat(repeat, number) -def main(args=None): +def main(args=None, *, _wrap_timer=None): """Main program, used when run as a script. - The optional argument specifies the command line to be parsed, + The optional 'args' argument specifies the command line to be parsed, defaulting to sys.argv[1:]. The return value is an exit code to be passed to sys.exit(); it @@ -244,6 +244,10 @@ def main(args=None): When an exception happens during timing, a traceback is printed to stderr and the return value is 1. Exceptions at other times (including the template compilation) are not caught. + + '_wrap_timer' is an internal interface used for unit testing. If it + is not None, it must be a callable that accepts a timer function + and returns another timer function (used for unit testing). """ if args is None: args = sys.argv[1:] @@ -289,6 +293,8 @@ def main(args=None): # directory) import os sys.path.insert(0, os.curdir) + if _wrap_timer is not None: + timer = _wrap_timer(timer) t = Timer(stmt, setup, timer) if number == 0: # determine number so that 0.2 <= total time < 2.0 |