[pypy-svn] r37627 - pypy/dist/pypy/lang/js

fijal at codespeak.net fijal at codespeak.net
Tue Jan 30 18:17:20 CET 2007


Author: fijal
Date: Tue Jan 30 18:17:18 2007
New Revision: 37627

Modified:
   pypy/dist/pypy/lang/js/js_interactive.py
Log:
We use pypy-js already for js backend, so js-pypy makes more sense here.


Modified: pypy/dist/pypy/lang/js/js_interactive.py
==============================================================================
--- pypy/dist/pypy/lang/js/js_interactive.py	(original)
+++ pypy/dist/pypy/lang/js/js_interactive.py	Tue Jan 30 18:17:18 2007
@@ -72,7 +72,7 @@
         loadjs(interp.global_context, [W_String(filename)], None)
 
     while interactive:
-        res = interp.run(load_source(raw_input("pypy-js> ")))
+        res = interp.run(load_source(raw_input("js-pypy> ")))
         if res is not None:
             print res
 



More information about the Pypy-commit mailing list