diff options
author | busywhitespace <busywhitespace@tuta.io> | 2023-02-05 09:55:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-05 09:55:36 (GMT) |
commit | 9b60ee976a6b66fe96c2d39051612999c26561e5 (patch) | |
tree | 87cdd2e082678eb78c17664b485ea57fd13d843e | |
parent | 6e4a521c2ab84c082ad71e540b045699f0dbbc11 (diff) | |
download | cpython-9b60ee976a6b66fe96c2d39051612999c26561e5.zip cpython-9b60ee976a6b66fe96c2d39051612999c26561e5.tar.gz cpython-9b60ee976a6b66fe96c2d39051612999c26561e5.tar.bz2 |
gh-101221: Add options in the documentation of timeit command (#101222)
-rw-r--r-- | Doc/library/timeit.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/timeit.rst b/Doc/library/timeit.rst index 5437704..32ab565 100644 --- a/Doc/library/timeit.rst +++ b/Doc/library/timeit.rst @@ -206,7 +206,7 @@ Command-Line Interface When called as a program from the command line, the following form is used:: - python -m timeit [-n N] [-r N] [-u U] [-s S] [-h] [statement ...] + python -m timeit [-n N] [-r N] [-u U] [-s S] [-p] [-v] [-h] [statement ...] Where the following options are understood: |