[pypy-svn] r2764 - pypy/trunk/src/pypy/interpreter

arigo at codespeak.net arigo at codespeak.net
Sat Jan 10 17:54:04 CET 2004


Author: arigo
Date: Sat Jan 10 17:54:03 2004
New Revision: 2764

Modified:
   pypy/trunk/src/pypy/interpreter/py.py
Log:
Patrick: the line I'm removing seems to have made its way into your commit
accidentally.  It shouldn't be there, as far as I can tell.


Modified: pypy/trunk/src/pypy/interpreter/py.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/py.py	(original)
+++ pypy/trunk/src/pypy/interpreter/py.py	Sat Jan 10 17:54:03 2004
@@ -38,7 +38,6 @@
         except error.PyPyError, pypyerr:
             pypyerr.operationerr.print_detailed_traceback(pypyerr.space)
     elif args:
-        args = args[0].split()+args[1:]
         try:
             main.run_file(args[0], space)
         except error.PyPyError, pypyerr:


More information about the Pypy-commit mailing list