From: Éric Araujo Date: Fri, 3 Sep 2010 22:05:17 +0000 (+0000) Subject: Merged revisions 84472 via svnmerge from X-Git-Tag: v3.1.3rc1~280 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8f94754d3ab6e9b27932a5f870f3500ca8e3ed84;p=thirdparty%2FPython%2Fcpython.git 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 ........ --- diff --git a/Modules/_heapqmodule.c b/Modules/_heapqmodule.c index 366fb3d51cb1..fd0ecac287eb 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. */