mirror of https://github.com/python/cpython
Bug #1592533: rename variable in heapq doc example, to avoid shadowing
"sorted". (backport from rev. 52668)
This commit is contained in:
parent
082f14b61c
commit
3ed5c2a277
|
@ -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}
|
||||
|
|
Loading…
Reference in New Issue