Specify Python Cookbook edition for reference (GH-26301) (#26303)

(cherry picked from commit 604cd71e50)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
This commit is contained in:
Miss Islington (bot) 2021-05-21 15:48:31 -07:00 committed by GitHub
parent 96c9961bfe
commit a373c80811
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,8 +15,8 @@
This module provides a simple way to time small bits of Python code. It has both 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>` 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. one. It avoids a number of common traps for measuring execution times.
See also Tim Peters' introduction to the "Algorithms" chapter in the *Python See also Tim Peters' introduction to the "Algorithms" chapter in the second
Cookbook*, published by O'Reilly. edition of *Python Cookbook*, published by O'Reilly.
Basic Examples Basic Examples