diff -r 65147d2422dc Lib/timeit.py --- a/Lib/timeit.py Sun Mar 10 03:29:55 2013 +0200 +++ b/Lib/timeit.py Thu Mar 14 17:47:29 2013 +0530 @@ -51,6 +51,17 @@ fairly compare older Python versions to Python 2.3, you may want to use python -O for the older versions to avoid timing SET_LINENO instructions. + +Classes: + + Timer + +Functions: + + timeit(string, string) -> float + repeat(string, string) -> list + default_timer() -> float + """ import gc @@ -62,7 +73,7 @@ # Must be an older Python version (see timeit() below) itertools = None -__all__ = ["Timer"] +__all__ = ["Timer", "timeit", "repeat", "default_timer"] dummy_src_name = "" default_number = 1000000 diff -r 65147d2422dc Misc/ACKS --- a/Misc/ACKS Sun Mar 10 03:29:55 2013 +0200 +++ b/Misc/ACKS Thu Mar 14 17:47:29 2013 +0530 @@ -1356,3 +1356,4 @@ Kai Zhu Tarek Ziadé Peter Åstrand +Anuj Gupta