diff options
author | Éric Araujo <merwok@netwok.org> | 2010-09-03 22:03:10 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-09-03 22:03:10 (GMT) |
commit | 1670b431b341bc451ab31c53a2229b8faaddd82e (patch) | |
tree | 6a535954f80d7ee60fdb88a71494361839f5c12e /Modules/_heapqmodule.c | |
parent | 0c8414e991c195952951139f260b926fb5db7e22 (diff) | |
download | cpython-1670b431b341bc451ab31c53a2229b8faaddd82e.zip cpython-1670b431b341bc451ab31c53a2229b8faaddd82e.tar.gz cpython-1670b431b341bc451ab31c53a2229b8faaddd82e.tar.bz2 |
Fix invalid bytes for UTF-8
Diffstat (limited to 'Modules/_heapqmodule.c')
-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 366fb3d..fd0ecac 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. */ |