From 99d95261734092d6fff980a31e3babfa677581c3 Mon Sep 17 00:00:00 2001 From: Alex Martelli Date: Wed, 5 Aug 2020 09:15:59 -0700 Subject: [PATCH] Update timeit.rst Clarifying that Tim's introduction to "Algorithms" is only in the *second* edition of "Python Cookbook" (since, alas, it's not in the current, third edition). --- Doc/library/timeit.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/timeit.rst b/Doc/library/timeit.rst index 46fa62c15fc2ef..4599793ddcf10a 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 the *Python Cookbook*, published by O'Reilly. Basic Examples