Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-28240: timeit: Update repeat() doc #7419

Merged
merged 3 commits into from
Jun 6, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions Doc/library/timeit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ The module defines three convenience functions and a public class:
The optional *globals* parameter was added.


.. function:: repeat(stmt='pass', setup='pass', timer=<default timer>, repeat=3, number=1000000, globals=None)
.. function:: repeat(stmt='pass', setup='pass', timer=<default timer>, repeat=5, number=1000000, globals=None)

Create a :class:`Timer` instance with the given statement, *setup* code and
*timer* function and run its :meth:`.repeat` method with the given *repeat*
Expand All @@ -79,6 +79,9 @@ The module defines three convenience functions and a public class:
.. versionchanged:: 3.5
The optional *globals* parameter was added.

.. versionchanged:: 3.7
Default value of *repeat* changed from 3 to 5.

.. function:: default_timer()

The default timer, which is always :func:`time.perf_counter`.
Expand Down Expand Up @@ -150,7 +153,7 @@ The module defines three convenience functions and a public class:
.. versionadded:: 3.6


.. method:: Timer.repeat(repeat=3, number=1000000)
.. method:: Timer.repeat(repeat=5, number=1000000)

Call :meth:`.timeit` a few times.

Expand All @@ -171,6 +174,9 @@ The module defines three convenience functions and a public class:
should be interested in. After that, you should look at the entire
vector and apply common sense rather than statistics.

.. versionchanged:: 3.7
Default value of *repeat* changed from 3 to 5.


.. method:: Timer.print_exc(file=None)

Expand Down