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

fijal at codespeak.net fijal at codespeak.net
Tue Oct 2 11:54:37 CEST 2007


Author: fijal
Date: Tue Oct  2 11:54:37 2007
New Revision: 47090

Modified:
   pypy/dist/pypy/translator/goal/app_main.py
Log:
Use flag in pyrepl, not to clear main


Modified: pypy/dist/pypy/translator/goal/app_main.py
==============================================================================
--- pypy/dist/pypy/translator/goal/app_main.py	(original)
+++ pypy/dist/pypy/translator/goal/app_main.py	Tue Oct  2 11:54:37 2007
@@ -321,7 +321,7 @@
             except ImportError:
                 success = run_toplevel(interactive_console, mainmodule)
             else:
-                main(print_banner=False)
+                main(print_banner=False, clear_main=False)
                 success = True
     except SystemExit, e:
         return e.code



More information about the Pypy-commit mailing list