[pypy-commit] pypy op_malloc_gc: Yay, test_zrpy_gc passes!

arigo noreply at buildbot.pypy.org
Sun Dec 18 21:26:32 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: op_malloc_gc
Changeset: r50684:c0ac6c2b2d1e
Date: 2011-12-18 21:26 +0100
http://bitbucket.org/pypy/pypy/changeset/c0ac6c2b2d1e/

Log:	Yay, test_zrpy_gc passes!

diff --git a/pypy/rpython/lltypesystem/llarena.py b/pypy/rpython/lltypesystem/llarena.py
--- a/pypy/rpython/lltypesystem/llarena.py
+++ b/pypy/rpython/lltypesystem/llarena.py
@@ -374,6 +374,7 @@
     following an object.  For arenas containing heterogenous objects.
     If minsize is specified, it gives a minimum on the resulting size."""
     return _round_up_for_allocation(size, minsize)
+round_up_for_allocation._annenforceargs_ = [int, int]
 
 def _round_up_for_allocation(size, minsize):    # internal
     return RoundedUpForAllocation(size, minsize)


More information about the pypy-commit mailing list