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

mwh at codespeak.net mwh at codespeak.net
Tue Nov 23 19:06:02 CET 2004


Author: mwh
Date: Tue Nov 23 19:06:00 2004
New Revision: 7645

Modified:
   pypy/trunk/src/pypy/annotation/factory.py
Log:
Don't call getvalue() in about_attribute().


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:06:00 2004
@@ -458,7 +458,7 @@
     def about_attribute(self, name):
         for cdef in self.getmro():
             if name in cdef.attrs:
-                return cdef.attrs[name].getvalue()
+                return cdef.attrs[name]
         return None
 
 



More information about the Pypy-commit mailing list