diff options
author | Éric Araujo <merwok@netwok.org> | 2010-09-03 22:06:31 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-09-03 22:06:31 (GMT) |
commit | 6807958dd4efc4caa7bd2a10f0d7fc95f1441f00 (patch) | |
tree | 2004c35c2abf13a9ce7a2522533d1db28f162e70 /Modules | |
parent | a74c334eee259a9c8715a8e02abc9830f65a4554 (diff) | |
download | cpython-6807958dd4efc4caa7bd2a10f0d7fc95f1441f00.zip cpython-6807958dd4efc4caa7bd2a10f0d7fc95f1441f00.tar.gz cpython-6807958dd4efc4caa7bd2a10f0d7fc95f1441f00.tar.bz2 |
Merged revisions 84472 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84472 | eric.araujo | 2010-09-04 00:03:10 +0200 (sam., 04 sept. 2010) | 2 lines
Fix invalid bytes for UTF-8
........
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_heapqmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_heapqmodule.c b/Modules/_heapqmodule.c index f705ec1..949e5b0 100644 --- a/Modules/_heapqmodule.c +++ b/Modules/_heapqmodule.c @@ -2,7 +2,7 @@ C implementation derived directly from heapq.py in Py2.3 which was written by Kevin O'Connor, augmented by Tim Peters, -annotated by François Pinard, and converted to C by Raymond Hettinger. +annotated by François Pinard, and converted to C by Raymond Hettinger. */ |