[pypy-svn] r9747 - pypy/dist/pypy/objspace
pedronis at codespeak.net
pedronis at codespeak.net
Fri Mar 11 18:12:10 CET 2005
Author: pedronis
Date: Fri Mar 11 18:12:09 2005
New Revision: 9747
Modified:
pypy/dist/pypy/objspace/dummy.py
Log:
added missing new list
Modified: pypy/dist/pypy/objspace/dummy.py
==============================================================================
--- pypy/dist/pypy/objspace/dummy.py (original)
+++ pypy/dist/pypy/objspace/dummy.py Fri Mar 11 18:12:09 2005
@@ -75,7 +75,8 @@
for en in ObjSpace.ExceptionTable:
setattr(self, 'w_'+en, self.wrap(en))
- for n, symbol, arity, ign in ObjSpace.MethodTable+[('newdict',"",1,[]), ('newtuple',"",1,[]), ('newslice',"",3,[]), ]:
+ for n, symbol, arity, ign in ObjSpace.MethodTable+[('newdict',"",1,[]), ('newlist',"",1,[]),
+ ('newtuple',"",1,[]), ('newslice',"",3,[]), ]:
source = ("""if 1:
def %s(self, %s):
return W_Obj()
More information about the Pypy-commit
mailing list