[pypy-svn] r31870 - pypy/dist/pypy/jit/tl

arigo at codespeak.net arigo at codespeak.net
Thu Aug 31 12:05:19 CEST 2006


Author: arigo
Date: Thu Aug 31 12:05:18 2006
New Revision: 31870

Modified:
   pypy/dist/pypy/jit/tl/tlr.py
Log:
Print the bytecode of the SQUARE function when directly called.


Modified: pypy/dist/pypy/jit/tl/tlr.py
==============================================================================
--- pypy/dist/pypy/jit/tl/tlr.py	(original)
+++ pypy/dist/pypy/jit/tl/tlr.py	Thu Aug 31 12:05:18 2006
@@ -71,3 +71,6 @@
     RETURN_A ]
 
 SQUARE = ''.join([chr(n) for n in SQUARE_LIST])
+
+if __name__ == '__main__':
+    print ','.join([str(n) for n in SQUARE_LIST])



More information about the Pypy-commit mailing list