[pypy-svn] r27499 - pypy/dist/pypy/translator

arigo at codespeak.net arigo at codespeak.net
Sat May 20 13:06:52 CEST 2006


Author: arigo
Date: Sat May 20 13:06:51 2006
New Revision: 27499

Modified:
   pypy/dist/pypy/translator/interactive.py
Log:
Grumble, more fixing.


Modified: pypy/dist/pypy/translator/interactive.py
==============================================================================
--- pypy/dist/pypy/translator/interactive.py	(original)
+++ pypy/dist/pypy/translator/interactive.py	Sat May 20 13:06:51 2006
@@ -101,6 +101,8 @@
             self.ensure_setup(argtypes, kwds.get('policy'),
                                         kwds.get('standalone'))
         for optname, value in kwds.iteritems():
+            if optname in ('policy', 'standalone'):
+                continue
             if optname in self.frozen_options:
                 if getattr(self.driver.options, optname) != value:
                      raise Exception("inconsistent option supplied: %s" % optname)



More information about the Pypy-commit mailing list