summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/pylib-tests/heapq.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-02 16:14:19 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-02 16:14:19 +0000
commitbbabfb40ba300d36f36c4bbacd196e028c758974 (patch)
tree94d0a721041f9c5def20d754bd9628c136d4b3dc /tests/bytecode/pylib-tests/heapq.py
parent40563d56bdabf270f0f2296dcc1b2f64b0c238c0 (diff)
downloadmicropython-bbabfb40ba300d36f36c4bbacd196e028c758974.tar.gz
micropython-bbabfb40ba300d36f36c4bbacd196e028c758974.zip
Fix bash->/usr/bin/env bash; add LICENSE for Python library tests.
Diffstat (limited to 'tests/bytecode/pylib-tests/heapq.py')
-rw-r--r--tests/bytecode/pylib-tests/heapq.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bytecode/pylib-tests/heapq.py b/tests/bytecode/pylib-tests/heapq.py
index 00b429c2d3..7834d06d57 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,