[pypy-svn] r75116 - pypy/branch/blackhole-improvement/pypy/rpython/lltypesystem
arigo at codespeak.net
arigo at codespeak.net
Fri Jun 4 18:10:41 CEST 2010
Author: arigo
Date: Fri Jun 4 18:10:40 2010
New Revision: 75116
Modified:
pypy/branch/blackhole-improvement/pypy/rpython/lltypesystem/llarena.py
Log:
Fix.
Modified: pypy/branch/blackhole-improvement/pypy/rpython/lltypesystem/llarena.py
==============================================================================
--- pypy/branch/blackhole-improvement/pypy/rpython/lltypesystem/llarena.py (original)
+++ pypy/branch/blackhole-improvement/pypy/rpython/lltypesystem/llarena.py Fri Jun 4 18:10:40 2010
@@ -223,7 +223,8 @@
else:
return self.arena._getid() < arena._getid()
- def _cast_to_int(self):
+ def _cast_to_int(self, symbolic=False):
+ assert not symbolic
return self.arena._getid() + self.offset
More information about the Pypy-commit
mailing list