[pypy-svn] r9987 - pypy/dist/pypy/objspace/std

hpk at codespeak.net hpk at codespeak.net
Mon Mar 21 15:50:52 CET 2005


Author: hpk
Date: Mon Mar 21 15:50:52 2005
New Revision: 9987

Modified:
   pypy/dist/pypy/objspace/std/typeobject.py
Log:
fix typo unconvererd by test_builtin.py 


Modified: pypy/dist/pypy/objspace/std/typeobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/typeobject.py	(original)
+++ pypy/dist/pypy/objspace/std/typeobject.py	Mon Mar 21 15:50:52 2005
@@ -69,7 +69,7 @@
                 w_self.hasdict = w_self.hasdict or w_base.hasdict
             if w_most_derived_base_with_slots:
                 nslots = w_most_derived_base_with_slots.nslots
-                self.w_bestbase = w_most_derived_base_with_slots
+                w_self.w_bestbase = w_most_derived_base_with_slots
             else:
                 nslots = 0
   



More information about the Pypy-commit mailing list