[pypy-svn] r7618 - pypy/trunk/src/pypy/translator/tool/pygame

mwh at codespeak.net mwh at codespeak.net
Tue Nov 23 15:43:51 CET 2004


Author: mwh
Date: Tue Nov 23 15:43:51 2004
New Revision: 7618

Modified:
   pypy/trunk/src/pypy/translator/tool/pygame/flowviewer.py
Log:
I don't *think* we really want to call getvalue() here.


Modified: pypy/trunk/src/pypy/translator/tool/pygame/flowviewer.py
==============================================================================
--- pypy/trunk/src/pypy/translator/tool/pygame/flowviewer.py	(original)
+++ pypy/trunk/src/pypy/translator/tool/pygame/flowviewer.py	Tue Nov 23 15:43:51 2004
@@ -137,7 +137,7 @@
             attrs = cdef.attrs.items()
             attrs.sort()
             for name, attrdef in attrs:
-                s_value = attrdef.getvalue()
+                s_value = attrdef.s_value
                 dotgen.emit_node(name, shape="box", label=nottoowide(s_value))
                 dotgen.emit_edge(nameof(cdef), name, label=name)
 



More information about the Pypy-commit mailing list