[pypy-svn] r35522 - pypy/branch/temp/pypy/translator/tool

arigo at codespeak.net arigo at codespeak.net
Sat Dec 9 02:31:43 CET 2006


Author: arigo
Date: Sat Dec  9 02:31:37 2006
New Revision: 35522

Modified:
   pypy/branch/temp/pypy/translator/tool/make_dot.py
Log:
merging of http://codespeak.net/svn/pypy/branch/jit-real-world/pypy/translator/tool/make_dot.py
revisions 35112 to 35513:

    ------------------------------------------------------------------------
    r35385 | ac | 2006-12-06 13:32:01 +0100 (Wed, 06 Dec 2006) | 1 line
    
    svn merge -r 35383:35384 svn+ssh://codespeak.net/svn/pypy/dist/pypy/translator/tool
    ------------------------------------------------------------------------
    r35301 | arigo | 2006-12-05 15:08:43 +0100 (Tue, 05 Dec 2006) | 9 lines
    
    (arre, pedronis, arigo)
    
    Dump generated machine code if the PYPYJITLOG env var is set (then it
    dumps to the file named in $PYPYJITLOG).
    
    Improve the viewcode.py viewer to use a fixed-size font and expand the
    tabs into columns manually.
    
    
    ------------------------------------------------------------------------
    r35118 | arigo | 2006-11-29 13:45:27 +0100 (Wed, 29 Nov 2006) | 7 lines
    
    (arre, pedronis, arigo)
    
    Be afraid.  Very afraid.  (pedronis)
    
    A branch to experiment with throwing PyPy at the JIT.  (arigo)
    
    
    ------------------------------------------------------------------------


Modified: pypy/branch/temp/pypy/translator/tool/make_dot.py
==============================================================================
--- pypy/branch/temp/pypy/translator/tool/make_dot.py	(original)
+++ pypy/branch/temp/pypy/translator/tool/make_dot.py	Sat Dec  9 02:31:37 2006
@@ -67,10 +67,11 @@
                   color="black",
                   fillcolor="white", 
                   style="filled",
+                  width="0.75",
                   ):
         d = locals()
         attrs = [('%s="%s"' % (x, d[x].replace('"', '\\"').replace('\n', '\\n')))
-                 for x in ['shape', 'label', 'color', 'fillcolor', 'style']]
+                 for x in ['shape', 'label', 'color', 'fillcolor', 'style', 'width']]
         self.emit('%s [%s];' % (safename(name), ", ".join(attrs)))
 
 



More information about the Pypy-commit mailing list