[pypy-svn] r78215 - pypy/trunk/pypy/translator/goal

arigo at codespeak.net arigo at codespeak.net
Fri Oct 22 16:50:18 CEST 2010


Author: arigo
Date: Fri Oct 22 16:50:17 2010
New Revision: 78215

Modified:
   pypy/trunk/pypy/translator/goal/app_main.py
Log:
Bah.  There is also the bug that we cannot combine options,
like "pypy-c -iE"


Modified: pypy/trunk/pypy/translator/goal/app_main.py
==============================================================================
--- pypy/trunk/pypy/translator/goal/app_main.py	(original)
+++ pypy/trunk/pypy/translator/goal/app_main.py	Fri Oct 22 16:50:17 2010
@@ -255,7 +255,7 @@
             break
         elif arg == '-u':
             unbuffered = True
-        elif arg == '-O':
+        elif arg == '-O' or arg == '-OO':
             pass
         elif arg == '--version' or arg == '-V':
             print "Python", sys.version



More information about the Pypy-commit mailing list