[pypy-svn] r54275 - pypy/branch/oo-jit/pypy/jit/timeshifter
antocuni at codespeak.net
antocuni at codespeak.net
Wed Apr 30 15:55:37 CEST 2008
Author: antocuni
Date: Wed Apr 30 15:55:36 2008
New Revision: 54275
Modified:
pypy/branch/oo-jit/pypy/jit/timeshifter/vdict.py
Log:
other translation fixes
Modified: pypy/branch/oo-jit/pypy/jit/timeshifter/vdict.py
==============================================================================
--- pypy/branch/oo-jit/pypy/jit/timeshifter/vdict.py (original)
+++ pypy/branch/oo-jit/pypy/jit/timeshifter/vdict.py Wed Apr 30 15:55:36 2008
@@ -191,8 +191,8 @@
args_gv)
def gen_insertclean(self, builder, args_gv):
- return builder.genop_call(typedesc.tok_ll_insertclean,
- typedesc.gv_ll_insertclean,
+ return builder.genop_call(self.tok_ll_insertclean,
+ self.gv_ll_insertclean,
args_gv)
@@ -211,10 +211,10 @@
return operator.eq, hash
def gen_newdict(self, builder, args_gv):
- XXX
+ raise NotImplementedError
def gen_insertclean(self, builder, args_gv):
- XXX
+ raise NotImplementedError
class AbstractFrozenVirtualDict(FrozenContainer):
_attrs_ = ('typedesc',)
More information about the pypy-svn
mailing list