[pypy-svn] r39320 - pypy/dist/pypy/translator/js/examples

fijal at codespeak.net fijal at codespeak.net
Thu Feb 22 21:42:08 CET 2007


Author: fijal
Date: Thu Feb 22 21:42:06 2007
New Revision: 39320

Modified:
   pypy/dist/pypy/translator/js/examples/console.py
Log:
typo


Modified: pypy/dist/pypy/translator/js/examples/console.py
==============================================================================
--- pypy/dist/pypy/translator/js/examples/console.py	(original)
+++ pypy/dist/pypy/translator/js/examples/console.py	Thu Feb 22 21:42:06 2007
@@ -23,7 +23,7 @@
     pipe = subprocess.Popen([python, "-u", "-i"], stdout=subprocess.PIPE,
                             stdin=subprocess.PIPE, stderr=subprocess.STDOUT,
                             close_fds=True, bufsize=0)
-    # a bit of POSIX voodoo
+    # a bit of a POSIX voodoo
     fcntl.fcntl(pipe.stdout.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
     return pipe
 



More information about the Pypy-commit mailing list