[pypy-svn] r66283 - pypy/branch/pyjitpl5/pypy/module/pypyjit

fijal at codespeak.net fijal at codespeak.net
Thu Jul 16 15:24:05 CEST 2009


Author: fijal
Date: Thu Jul 16 15:24:05 2009
New Revision: 66283

Modified:
   pypy/branch/pyjitpl5/pypy/module/pypyjit/policy.py
Log:
usuall problems with negating boolean properties...


Modified: pypy/branch/pyjitpl5/pypy/module/pypyjit/policy.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/module/pypyjit/policy.py	(original)
+++ pypy/branch/pyjitpl5/pypy/module/pypyjit/policy.py	Thu Jul 16 15:24:05 2009
@@ -46,7 +46,7 @@
         if mod.startswith('pypy.interpreter.pyparser.'):
             return False
         if mod.startswith('pypy.module.'):
-            if (not mod.startswith('pypy.module.pypyjit.') or
+            if (not mod.startswith('pypy.module.pypyjit.') and
                 not mod.startswith('pypy.module.micronumpy.')):
                 return False
             



More information about the Pypy-commit mailing list