]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Specify Python Cookbook edition for reference (GH-26301) (#26302)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 21 May 2021 22:48:56 +0000 (15:48 -0700)
committerGitHub <noreply@github.com>
Fri, 21 May 2021 22:48:56 +0000 (23:48 +0100)
(cherry picked from commit 604cd71e501b3bb1ede2b8abc797643fc2e9129c)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Doc/library/timeit.rst

index 668fcb860cea87bbb1acefceba44f858b097409f..d4e8b749db48087324851aff0cb476a391b3d98d 100644 (file)
@@ -15,8 +15,8 @@
 This module provides a simple way to time small bits of Python code. It has both
 a :ref:`timeit-command-line-interface` as well as a :ref:`callable <python-interface>`
 one.  It avoids a number of common traps for measuring execution times.
-See also Tim Peters' introduction to the "Algorithms" chapter in the *Python
-Cookbook*, published by O'Reilly.
+See also Tim Peters' introduction to the "Algorithms" chapter in the second
+edition of *Python Cookbook*, published by O'Reilly.
 
 
 Basic Examples