From: Fred Drake Date: Fri, 2 Aug 2002 19:46:42 +0000 (+0000) Subject: Minor markup changes. X-Git-Tag: v2.3c1~4765 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1acab695a710ce658f381fb70aae13224aba6dc9;p=python Minor markup changes. --- diff --git a/Doc/lib/libheapq.tex b/Doc/lib/libheapq.tex index fe8c4113ba..d196fdab77 100644 --- a/Doc/lib/libheapq.tex +++ b/Doc/lib/libheapq.tex @@ -3,14 +3,15 @@ \declaremodule{standard}{heapq} \modulesynopsis{Heap queue algorithm (a.k.a. priority queue).} +\moduleauthor{Kevin O'Connor}{} \sectionauthor{Guido van Rossum}{guido@python.org} -% Implementation contributed by Kevin O'Connor -% Theoretical explanation by François Pinard +% Theoretical explanation: +\sectionauthor{Fran\c cois Pinard}{} +\versionadded{2.3} This module provides an implementation of the heap queue algorithm, also known as the priority queue algorithm. -\versionadded{2.3} Heaps are arrays for which \code{\var{heap}[\var{k}] <= \var{heap}[2*\var{k}+1]} and