Author: Armin Rigo <[email protected]>
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)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to