[pypy-svn] r55208 - pypy/branch/smalltalk-shadow-changes/pypy/lang/smalltalk

cfbolz at codespeak.net cfbolz at codespeak.net
Sun May 25 18:04:45 CEST 2008


Author: cfbolz
Date: Sun May 25 18:04:42 2008
New Revision: 55208

Modified:
   pypy/branch/smalltalk-shadow-changes/pypy/lang/smalltalk/shadow.py
Log:
attach a default name of None


Modified: pypy/branch/smalltalk-shadow-changes/pypy/lang/smalltalk/shadow.py
==============================================================================
--- pypy/branch/smalltalk-shadow-changes/pypy/lang/smalltalk/shadow.py	(original)
+++ pypy/branch/smalltalk-shadow-changes/pypy/lang/smalltalk/shadow.py	Sun May 25 18:04:42 2008
@@ -76,6 +76,7 @@
     """A shadow for Smalltalk objects that are classes
     (i.e. used as the class of another Smalltalk object).
     """
+    name = None
     def __init__(self, space, w_self):
         self.name = ""
         AbstractCachingShadow.__init__(self, space, w_self)



More information about the Pypy-commit mailing list