This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Update timeit documentation to reflect default repeat of five
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, jayanth, miss-islington, serhiy.storchaka, vstinner
Priority: normal Keywords: patch, patch, patch

Created on 2019-01-14 18:56 by jayanth, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 11559 merged scotchka, 2019-01-15 06:18
PR 11559 merged scotchka, 2019-01-15 06:18
PR 11559 merged scotchka, 2019-01-15 06:18
PR 11562 merged miss-islington, 2019-01-15 10:29
PR 11562 merged miss-islington, 2019-01-15 10:29
Messages (3)
msg333635 - (view) Author: Jayanth Raman (jayanth) Date: 2019-01-14 18:56
In the Examples section of the timeit documentation, repeat() returns a list of size three.  But the default is now five and the documentation should reflect that.
Thanks.
msg333667 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-01-15 10:29
New changeset 06f8b57212b2e2cd2e63af36cecdfa3075b324a2 by Serhiy Storchaka (Henry Chen) in branch 'master':
bpo-35738: Update the example for timer.Timer.repeat(). (GH-11559)
https://github.com/python/cpython/commit/06f8b57212b2e2cd2e63af36cecdfa3075b324a2
msg333674 - (view) Author: miss-islington (miss-islington) Date: 2019-01-15 10:49
New changeset 0bb6b891154b5718c2d7604fc4aa7a51a2f9fe70 by Miss Islington (bot) in branch '3.7':
bpo-35738: Update the example for timer.Timer.repeat(). (GH-11559)
https://github.com/python/cpython/commit/0bb6b891154b5718c2d7604fc4aa7a51a2f9fe70
History
Date User Action Args
2022-04-11 14:59:10adminsetgithub: 79919
2019-01-15 10:54:04vstinnersetkeywords: patch, patch, patch
status: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-01-15 10:49:19miss-islingtonsetnosy: + miss-islington
messages: + msg333674
2019-01-15 10:29:47miss-islingtonsetpull_requests: + pull_request11209
2019-01-15 10:29:40miss-islingtonsetpull_requests: + pull_request11208
2019-01-15 10:29:23serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg333667
2019-01-15 06:23:15scotchkasettitle: Update timeit documentation to reflect default repeat of three -> Update timeit documentation to reflect default repeat of five
2019-01-15 06:18:35scotchkasetkeywords: + patch
stage: patch review
pull_requests: + pull_request11198
2019-01-15 06:18:28scotchkasetkeywords: + patch
stage: (no value)
pull_requests: + pull_request11197
2019-01-15 06:18:22scotchkasetkeywords: + patch
stage: (no value)
pull_requests: + pull_request11196
2019-01-14 19:12:09serhiy.storchakasetnosy: + vstinner
2019-01-14 18:56:00jayanthcreate