[pypy-svn] r7646 - pypy/trunk/src/pypy/annotation

arigo at codespeak.net arigo at codespeak.net
Tue Nov 23 19:09:16 CET 2004


Author: arigo
Date: Tue Nov 23 19:09:12 2004
New Revision: 7646

Modified:
   pypy/trunk/src/pypy/annotation/factory.py
Log:
Oups.

Modified: pypy/trunk/src/pypy/annotation/factory.py
==============================================================================
--- pypy/trunk/src/pypy/annotation/factory.py	(original)
+++ pypy/trunk/src/pypy/annotation/factory.py	Tue Nov 23 19:09:12 2004
@@ -458,7 +458,7 @@
     def about_attribute(self, name):
         for cdef in self.getmro():
             if name in cdef.attrs:
-                return cdef.attrs[name]
+                return cdef.attrs[name].s_value
         return None
 
 



More information about the Pypy-commit mailing list