[pypy-svn] r35489 - pypy/branch/jit-real-world/pypy/jit/codegen

arigo at codespeak.net arigo at codespeak.net
Fri Dec 8 16:36:17 CET 2006


Author: arigo
Date: Fri Dec  8 16:36:16 2006
New Revision: 35489

Added:
   pypy/branch/jit-real-world/pypy/jit/codegen/hlinfo.py   (contents, props changed)
Log:
(pedronis, arigo)

oops, should have gone with an earlier check-in



Added: pypy/branch/jit-real-world/pypy/jit/codegen/hlinfo.py
==============================================================================
--- (empty file)
+++ pypy/branch/jit-real-world/pypy/jit/codegen/hlinfo.py	Fri Dec  8 16:36:16 2006
@@ -0,0 +1,10 @@
+
+class HighLevelJITInfo:
+    """
+    A singleton class for the RPython-level JITed program to push information
+    that the backend can use or log.
+    """
+    sys_executable = None
+
+
+highleveljitinfo = HighLevelJITInfo()



More information about the Pypy-commit mailing list