[pypy-svn] r13265 - pypy/dist/pypy/translator/goal

tismer at codespeak.net tismer at codespeak.net
Fri Jun 10 16:02:25 CEST 2005


Author: tismer
Date: Fri Jun 10 16:02:24 2005
New Revision: 13265

Modified:
   pypy/dist/pypy/translator/goal/targetpypymain.py
Log:
just a few comments which ask why I cannot enable this and that

Modified: pypy/dist/pypy/translator/goal/targetpypymain.py
==============================================================================
--- pypy/dist/pypy/translator/goal/targetpypymain.py	(original)
+++ pypy/dist/pypy/translator/goal/targetpypymain.py	Fri Jun 10 16:02:24 2005
@@ -15,6 +15,10 @@
 def entry_point(argv):
     w_argv = space.newlist([space.wrap(s) for s in argv])
     w_exitcode = space.call(w_entry_point, w_argv)
+    # try to pull it all in
+##    from pypy.interpreter import main, interactive, error
+##    con = interactive.PyPyConsole(space)
+##    con.interact()
     return space.int_w(w_exitcode)
 
 # _____ Define and setup target ___
@@ -25,6 +29,7 @@
     StdObjSpace.setup_old_style_classes = lambda self: None
     # disable geninterp for now -- we have faaar toooo much interp-level code
     # for the poor translator already
+    # XXX why can't I enable this? crashes the annotator!
     gateway.ApplevelClass.use_geninterp = False
 
     space = StdObjSpace()



More information about the Pypy-commit mailing list