[pypy-svn] r68131 - pypy/trunk/pypy/objspace/std
cfbolz at codespeak.net
cfbolz at codespeak.net
Fri Oct 2 23:20:26 CEST 2009
Author: cfbolz
Date: Fri Oct 2 23:20:25 2009
New Revision: 68131
Modified:
pypy/trunk/pypy/objspace/std/typeobject.py
Log:
(pedronis, cfbolz): the instancetypedef attribute is immutable
Modified: pypy/trunk/pypy/objspace/std/typeobject.py
==============================================================================
--- pypy/trunk/pypy/objspace/std/typeobject.py (original)
+++ pypy/trunk/pypy/objspace/std/typeobject.py Fri Oct 2 23:20:25 2009
@@ -54,7 +54,8 @@
'needsdel',
'weakrefable',
'hasdict',
- 'nslots']
+ 'nslots',
+ 'instancetypedef']
# for config.objspace.std.getattributeshortcut
# (False is a conservative default, fixed during real usage)
More information about the Pypy-commit
mailing list