[pypy-svn] r17047 - pypy/dist/pypy/interpreter
arigo at codespeak.net
arigo at codespeak.net
Mon Aug 29 19:06:53 CEST 2005
Author: arigo
Date: Mon Aug 29 19:06:52 2005
New Revision: 17047
Modified:
pypy/dist/pypy/interpreter/baseobjspace.py
Log:
Fix the space operation tables.
Modified: pypy/dist/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/dist/pypy/interpreter/baseobjspace.py (original)
+++ pypy/dist/pypy/interpreter/baseobjspace.py Mon Aug 29 19:06:52 2005
@@ -639,7 +639,7 @@
('get', 'get', 3, ['__get__']),
('set', 'set', 3, ['__set__']),
('delete', 'delete', 2, ['__delete__']),
- ('userdel', 'del', 2, ['__del__']),
+ ('userdel', 'del', 1, ['__del__']),
]
ObjSpace.BuiltinModuleTable = [
@@ -724,6 +724,8 @@
'newunicode',
'newdict',
'newslice',
- 'call_args'
+ 'call_args',
+ 'marshal_w',
+ 'log',
]
More information about the Pypy-commit
mailing list