Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r64805:88ea391ffde6
Date: 2013-06-05 12:00 -0700
http://bitbucket.org/pypy/pypy/changeset/88ea391ffde6/

Log:    fix

diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter/app_main.py
--- a/pypy/interpreter/app_main.py
+++ b/pypy/interpreter/app_main.py
@@ -462,13 +462,13 @@
         sys.flags = type(sys.flags)(flags)
         sys.dont_write_bytecode = bool(sys.flags.dont_write_bytecode)
 
-    sys._xoptions = dict(x.split('=', 1) if '=' in x else (x, True)
-                         for x in options['_xoptions'])
-
         if sys.flags.optimize >= 1:
             import __pypy__
             __pypy__.set_debug(False)
 
+    sys._xoptions = dict(x.split('=', 1) if '=' in x else (x, True)
+                         for x in options['_xoptions'])
+
 ##    if not we_are_translated():
 ##        for key in sorted(options):
 ##            print '%40s: %s' % (key, options[key])
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to