mirror of
https://github.com/python/cpython.git
synced 2025-10-06 15:11:58 +00:00
bpo-28240: timeit: Update repeat() doc (GH-7419)
Document that the default value of repeat changed from 3 to 5 in Python 3.7.
This commit is contained in:
parent
492d6424a7
commit
3ef769fcd3
2 changed files with 12 additions and 6 deletions
|
@ -13,7 +13,7 @@ Command line usage:
|
|||
|
||||
Options:
|
||||
-n/--number N: how many times to execute 'statement' (default: see below)
|
||||
-r/--repeat N: how many times to repeat the timer (default 3)
|
||||
-r/--repeat N: how many times to repeat the timer (default 5)
|
||||
-s/--setup S: statement to be executed once initially (default 'pass').
|
||||
Execution time of this setup statement is NOT timed.
|
||||
-p/--process: use time.process_time() (default is time.perf_counter())
|
||||
|
@ -184,7 +184,7 @@ class Timer:
|
|||
|
||||
This is a convenience function that calls the timeit()
|
||||
repeatedly, returning a list of results. The first argument
|
||||
specifies how many times to call timeit(), defaulting to 3;
|
||||
specifies how many times to call timeit(), defaulting to 5;
|
||||
the second argument specifies the timer argument, defaulting
|
||||
to one million.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue