From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 21 May 2021 22:48:31 +0000 (-0700) Subject: Specify Python Cookbook edition for reference (GH-26301) (#26303) X-Git-Tag: v3.9.6~65 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a373c8081148bf564512f00fb6106026f4ac72f8;p=thirdparty%2FPython%2Fcpython.git Specify Python Cookbook edition for reference (GH-26301) (#26303) (cherry picked from commit 604cd71e501b3bb1ede2b8abc797643fc2e9129c) Co-authored-by: Terry Jan Reedy --- diff --git a/Doc/library/timeit.rst b/Doc/library/timeit.rst index 668fcb860cea..d4e8b749db48 100644 --- a/Doc/library/timeit.rst +++ b/Doc/library/timeit.rst @@ -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 ` 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