diff options
author | Georg Brandl <georg@python.org> | 2007-03-22 08:05:53 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-03-22 08:05:53 (GMT) |
commit | 4d891193d106b147c816dc617f087498df76972a (patch) | |
tree | f1b48c7c0ee3487b9cba22e70a84c55bacc1a79f | |
parent | e5df857cc3eb646d6d921eab14398fc8f47b8be9 (diff) | |
download | cpython-4d891193d106b147c816dc617f087498df76972a.zip cpython-4d891193d106b147c816dc617f087498df76972a.tar.gz cpython-4d891193d106b147c816dc617f087498df76972a.tar.bz2 |
Bug #1685704: use -m switch in timeit docs.
(backport from rev. 54524)
-rw-r--r-- | Doc/lib/libtimeit.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libtimeit.tex b/Doc/lib/libtimeit.tex index 1c4e05b..0be156c 100644 --- a/Doc/lib/libtimeit.tex +++ b/Doc/lib/libtimeit.tex @@ -102,7 +102,7 @@ measured. If so, GC can be re-enabled as the first statement in the When called as a program from the command line, the following form is used: \begin{verbatim} -python timeit.py [-n N] [-r N] [-s S] [-t] [-c] [-h] [statement ...] +python -m timeit [-n N] [-r N] [-s S] [-t] [-c] [-h] [statement ...] \end{verbatim} where the following options are understood: |