[pypy-svn] r53544 - pypy/branch/jit-hotpath/pypy/jit/tl

fijal at codespeak.net fijal at codespeak.net
Mon Apr 7 21:45:59 CEST 2008


Author: fijal
Date: Mon Apr  7 21:45:59 2008
New Revision: 53544

Modified:
   pypy/branch/jit-hotpath/pypy/jit/tl/targettiny3hotpath.py
Log:
Make it directly runnable


Modified: pypy/branch/jit-hotpath/pypy/jit/tl/targettiny3hotpath.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/tl/targettiny3hotpath.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/tl/targettiny3hotpath.py	Mon Apr  7 21:45:59 2008
@@ -60,3 +60,7 @@
     compiler.
     """
     return None, MyHintAnnotatorPolicy()
+
+if __name__ == '__main__':
+    import sys
+    entry_point(sys.argv)



More information about the Pypy-commit mailing list