summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-01-15 02:49:16 -0800
committerGitHub <noreply@github.com>2019-01-15 02:49:16 -0800
commit0bb6b891154b5718c2d7604fc4aa7a51a2f9fe70 (patch)
treea67758f85db95df0c7b9adad50488447bd8d3d65 /Doc
parenta4aade2cf82dfa889c2bdad9fa0aa874f43c0bf8 (diff)
downloadcpython-git-0bb6b891154b5718c2d7604fc4aa7a51a2f9fe70.tar.gz
bpo-35738: Update the example for timer.Timer.repeat(). (GH-11559)
Show correct number of repeats. (cherry picked from commit 06f8b57212b2e2cd2e63af36cecdfa3075b324a2) Co-authored-by: Henry Chen <tahafut@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/timeit.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/timeit.rst b/Doc/library/timeit.rst
index 93ca940ef5..197b8a76fc 100644
--- a/Doc/library/timeit.rst
+++ b/Doc/library/timeit.rst
@@ -292,7 +292,7 @@ The same can be done using the :class:`Timer` class and its methods::
>>> t.timeit()
0.3955516149999312
>>> t.repeat()
- [0.40193588800002544, 0.3960157959998014, 0.39594301399984033]
+ [0.40183617287970225, 0.37027556854118704, 0.38344867356679524, 0.3712595970846668, 0.37866875250654886]
The following examples show how to time expressions that contain multiple lines.