-
-
Notifications
You must be signed in to change notification settings - Fork 30.8k
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
Conversation
Document that the default value of repeat changed from 3 to 5 in Python 3.7.
@serhiy-storchaka: Is it what you expected in your https://bugs.python.org/issue33771 request? (Would you mind to review this PR please?) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update also the CLI docs and docstrings.
When you're done making the requested changes, leave the comment: And if you don't make the requested changes, you will be put in the comfy chair! |
I have made the requested changes; please review again. |
Thanks for making the requested changes! @serhiy-storchaka: please review the changes made to this pull request. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And the CLI documentation please.
I updated timeit --help, but I missed that the CLI was also documented in Doc/library/timeit.rst. All documentation should now be up to date! |
Thanks @vstinner for the PR 🌮🎉.. I'm working now to backport this PR to: 3.7. |
Document that the default value of repeat changed from 3 to 5 in Python 3.7. (cherry picked from commit 3ef769f) Co-authored-by: Victor Stinner <vstinner@redhat.com>
GH-7457 is a backport of this pull request to the 3.7 branch. |
Document that the default value of repeat changed from 3 to 5 in
Python 3.7.
https://bugs.python.org/issue28240