[pypy-commit] pypy default: fix comment

arigo noreply at buildbot.pypy.org
Mon Dec 23 01:18:53 CET 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r68530:56835500790b
Date: 2013-12-23 01:18 +0100
http://bitbucket.org/pypy/pypy/changeset/56835500790b/

Log:	fix comment

diff --git a/pypy/module/_cffi_backend/handle.py b/pypy/module/_cffi_backend/handle.py
--- a/pypy/module/_cffi_backend/handle.py
+++ b/pypy/module/_cffi_backend/handle.py
@@ -42,7 +42,7 @@
             if self.handles[d]() is None:
                 self.look_distance = d + 1
                 return d
-        # full! extend, but don't use '!=' here
+        # full! extend, but don't use '+=' here
         self.handles = self.handles + [dead_ref] * (length // 3 + 5)
         self.look_distance = length + 1
         return length


More information about the pypy-commit mailing list