[pypy-svn] r69104 - pypy/branch/io-lang/pypy/lang/io

david at codespeak.net david at codespeak.net
Mon Nov 9 21:25:51 CET 2009


Author: david
Date: Mon Nov  9 21:25:48 2009
New Revision: 69104

Modified:
   pypy/branch/io-lang/pypy/lang/io/parserhack.py
Log:
fix parser hack to use new io binary

Modified: pypy/branch/io-lang/pypy/lang/io/parserhack.py
==============================================================================
--- pypy/branch/io-lang/pypy/lang/io/parserhack.py	(original)
+++ pypy/branch/io-lang/pypy/lang/io/parserhack.py	Mon Nov  9 21:25:48 2009
@@ -62,7 +62,7 @@
 io_file = py.magic.autopath().dirpath().join("parserhack.io")
 
 def parse(input, space=None):
-    child_in, child_out_err = os.popen4("osxvm %s" % io_file)
+    child_in, child_out_err = os.popen4("io %s" % io_file)
     child_in.write(input)
     child_in.close()
     s = child_out_err.read().strip()



More information about the Pypy-commit mailing list