diff options
Diffstat (limited to 'tests/bytecode/pylib-tests/heapq.py')
-rw-r--r-- | tests/bytecode/pylib-tests/heapq.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bytecode/pylib-tests/heapq.py b/tests/bytecode/pylib-tests/heapq.py index 00b429c2d..7834d06d5 100644 --- a/tests/bytecode/pylib-tests/heapq.py +++ b/tests/bytecode/pylib-tests/heapq.py @@ -32,7 +32,7 @@ maintains the heap invariant! __about__ = """Heap queues -[explanation by François Pinard] +[explanation by Francois Pinard] Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for all k, counting elements from 0. For the sake of comparison, |