[pypy-commit] pypy gc-minimark-pinning: missing a "return"?

arigo noreply at buildbot.pypy.org
Fri Apr 13 16:09:10 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: gc-minimark-pinning
Changeset: r54334:d6855594831c
Date: 2012-04-13 16:08 +0200
http://bitbucket.org/pypy/pypy/changeset/d6855594831c/

Log:	missing a "return"?

diff --git a/pypy/rpython/memory/gc/minimark.py b/pypy/rpython/memory/gc/minimark.py
--- a/pypy/rpython/memory/gc/minimark.py
+++ b/pypy/rpython/memory/gc/minimark.py
@@ -600,6 +600,7 @@
                 llarena.arena_reserve(self.nursery_free, totalsize)
                 res = self.nursery_free
                 self.nursery_free = res + totalsize
+            XXX   # it's missing a 'return' somewhere think
         self.minor_collection(totalsize)
         # try allocating now, otherwise we do a major collect
         do_major_collect = False


More information about the pypy-commit mailing list