diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-19 13:39:36 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-19 13:39:36 (GMT) |
commit | c2e9983060a02a677cfc4fa84e05446d7af9e014 (patch) | |
tree | bc086e84811af499dfe91d15fe8b87fafa0e86a2 /Doc/library/timeit.rst | |
parent | 18207ea32becb391e8a78b680c5b7e76d56e3ebd (diff) | |
parent | 989db5c880cbe85e49857cf44daf8b6c9ccbe0b6 (diff) | |
download | cpython-c2e9983060a02a677cfc4fa84e05446d7af9e014.zip cpython-c2e9983060a02a677cfc4fa84e05446d7af9e014.tar.gz cpython-c2e9983060a02a677cfc4fa84e05446d7af9e014.tar.bz2 |
Issue #19795: Mark up None as literal text.
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 5cb174c..d4ddd64 100644 --- a/Doc/library/timeit.rst +++ b/Doc/library/timeit.rst @@ -145,7 +145,7 @@ The module defines three convenience functions and a public class: 100, 1000, ...) up to a maximum of one billion, until the time taken is at least 0.2 second, or the maximum is reached. - If *callback* is given and is not *None*, it will be called after + If *callback* is given and is not ``None``, it will be called after each trial with two arguments: ``callback(number, time_taken)``. .. versionadded:: 3.6 |