From 2b3de4175c161c9e7f3f129903014450efc110b0 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 6 Sep 2004 07:04:09 +0000 Subject: Fix erroneous docstring comment. --- Doc/lib/libheapq.tex | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Doc') diff --git a/Doc/lib/libheapq.tex b/Doc/lib/libheapq.tex index edacf79158..55ef6412e3 100644 --- a/Doc/lib/libheapq.tex +++ b/Doc/lib/libheapq.tex @@ -60,9 +60,10 @@ This is more efficient than \function{heappop()} followed by \function{heappush()}, and can be more appropriate when using a fixed-size heap. Note that the value returned may be larger than \var{item}! That constrains reasonable uses of this routine -unless written as part of a larger expression: +unless written as part of a conditional replacement: \begin{verbatim} - result = item <= heap[0] and item or heapreplace(heap, item) + if item > heap[0]: + item = heapreplace(heap, item) \end{verbatim} \end{funcdesc} -- cgit v1.2.1