[pypy-svn] r31378 - pypy/dist/pypy/rpython

rhymes at codespeak.net rhymes at codespeak.net
Thu Aug 17 18:48:16 CEST 2006


Author: rhymes
Date: Thu Aug 17 18:48:14 2006
New Revision: 31378

Modified:
   pypy/dist/pypy/rpython/rcpy.py
Log:
fix typo

Modified: pypy/dist/pypy/rpython/rcpy.py
==============================================================================
--- pypy/dist/pypy/rpython/rcpy.py	(original)
+++ pypy/dist/pypy/rpython/rcpy.py	Thu Aug 17 18:48:14 2006
@@ -267,7 +267,7 @@
         p[len(name)] = '\x00'
         pytypeobj.c_tp_name = lltype.direct_arrayitems(p)
         pytypeobj.c_tp_basicsize = llmemory.sizeof(r_inst.lowleveltype.TO)
-        if cpytype.subclassablei and False: # XXX deallocation of subclass object segfaults!
+        if cpytype.subclassable and False: # XXX deallocation of subclass object segfaults!
             pytypeobj.c_tp_flags = CDefinedIntSymbolic('''(Py_TPFLAGS_DEFAULT |
                 Py_TPFLAGS_CHECKTYPES | Py_TPFLAGS_BASETYPE)''')
         else:



More information about the Pypy-commit mailing list