[pypy-svn] r13235 - pypy/dist/pypy/bin

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Jun 9 19:11:58 CEST 2005


Author: cfbolz
Date: Thu Jun  9 19:11:58 2005
New Revision: 13235

Modified:
   pypy/dist/pypy/bin/translator.py
Log:
added import of llvm snippets and made the RPythonTyper avaiable, when in interactive use.


Modified: pypy/dist/pypy/bin/translator.py
==============================================================================
--- pypy/dist/pypy/bin/translator.py	(original)
+++ pypy/dist/pypy/bin/translator.py	Thu Jun  9 19:11:58 2005
@@ -207,6 +207,8 @@
 
 if __name__ == '__main__':
     from pypy.translator.test import snippet as test
+    from pypy.translator.llvm.test import llvmsnippet as test2
+    from pypy.rpython.rtyper import RPythonTyper
     if (os.getcwd() not in sys.path and
         os.path.curdir not in sys.path):
         sys.path.insert(0, os.getcwd())



More information about the Pypy-commit mailing list