mirror of
https://github.com/python/cpython.git
synced 2025-12-19 15:13:18 +00:00
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
1 changed files with 4 additions and 4 deletions
|
|
@ -76,14 +76,14 @@ Example of use:
|
||||||
>>> for item in data:
|
>>> for item in data:
|
||||||
... heappush(heap, item)
|
... heappush(heap, item)
|
||||||
...
|
...
|
||||||
>>> sorted = []
|
>>> ordered = []
|
||||||
>>> while heap:
|
>>> while heap:
|
||||||
... sorted.append(heappop(heap))
|
... ordered.append(heappop(heap))
|
||||||
...
|
...
|
||||||
>>> print sorted
|
>>> print ordered
|
||||||
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
||||||
>>> data.sort()
|
>>> data.sort()
|
||||||
>>> print data == sorted
|
>>> print data == ordered
|
||||||
True
|
True
|
||||||
>>>
|
>>>
|
||||||
\end{verbatim}
|
\end{verbatim}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue