Bug #1592533: rename variable in heapq doc example, to avoid shadowing

"sorted".
This commit is contained in:
Georg Brandl 2006-11-08 10:04:29 +00:00
parent 393ac22b73
commit fafdc3b97b
1 changed files with 4 additions and 4 deletions

View File

@ -76,14 +76,14 @@ Example of use:
>>> for item in data:
... heappush(heap, item)
...
>>> sorted = []
>>> ordered = []
>>> while heap:
... sorted.append(heappop(heap))
... ordered.append(heappop(heap))
...
>>> print sorted
>>> print ordered
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> data.sort()
>>> print data == sorted
>>> print data == ordered
True
>>>
\end{verbatim}