diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-10-18 15:42:48 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-10-18 15:42:48 (GMT) |
commit | c3e40f8c5bc7eb1c6aa60074c729219ce8881276 (patch) | |
tree | 3d3571cc555873633295107fba63f892ba1d5d85 /Doc/library/timeit.rst | |
parent | 61de57f175bff135b85f66caa159861aa8ee18dd (diff) | |
download | cpython-c3e40f8c5bc7eb1c6aa60074c729219ce8881276.zip cpython-c3e40f8c5bc7eb1c6aa60074c729219ce8881276.tar.gz cpython-c3e40f8c5bc7eb1c6aa60074c729219ce8881276.tar.bz2 |
timeit: add nsec (nanosecond) unit for format timings
Issue #28240.
Diffstat (limited to 'Doc/library/timeit.rst')
-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 bad7194..5cb174c 100644 --- a/Doc/library/timeit.rst +++ b/Doc/library/timeit.rst @@ -224,7 +224,7 @@ Where the following options are understood: .. cmdoption:: -u, --unit=U - specify a time unit for timer output; can select usec, msec, or sec + specify a time unit for timer output; can select nsec, usec, msec, or sec .. versionadded:: 3.5 |