[pypy-svn] r49206 - pypy/dist/pypy/rpython/lltypesystem
arigo at codespeak.net
arigo at codespeak.net
Thu Nov 29 15:57:08 CET 2007
Author: arigo
Date: Thu Nov 29 15:57:05 2007
New Revision: 49206
Modified:
pypy/dist/pypy/rpython/lltypesystem/rclass.py
Log:
Reference to the issue.
Modified: pypy/dist/pypy/rpython/lltypesystem/rclass.py
==============================================================================
--- pypy/dist/pypy/rpython/lltypesystem/rclass.py (original)
+++ pypy/dist/pypy/rpython/lltypesystem/rclass.py Thu Nov 29 15:57:05 2007
@@ -701,7 +701,7 @@
return 0 # for None
cached = ins.hash_cache
if cached == 0:
- cached = ins.hash_cache = intmask(id(ins))
+ cached = ins.hash_cache = intmask(id(ins)) # XXX issue325
return cached
def ll_inst_type(obj):
More information about the pypy-svn
mailing list