[pypy-svn] r71525 - pypy/trunk/pypy/module/pypyjit
fijal at codespeak.net
fijal at codespeak.net
Fri Feb 26 23:46:47 CET 2010
Author: fijal
Date: Fri Feb 26 23:46:44 2010
New Revision: 71525
Modified:
pypy/trunk/pypy/module/pypyjit/policy.py
Log:
Look into some more modules. Does not change much (ie select is a loop
anyway), the reasoning is more "why not".
Modified: pypy/trunk/pypy/module/pypyjit/policy.py
==============================================================================
--- pypy/trunk/pypy/module/pypyjit/policy.py (original)
+++ pypy/trunk/pypy/module/pypyjit/policy.py Fri Feb 26 23:46:44 2010
@@ -10,7 +10,7 @@
if '.' in modname:
modname, _ = modname.split('.', 1)
- if modname in ['pypyjit', 'signal', 'micronumpy', 'math', 'exceptions']:
+ if modname in ['pypyjit', 'signal', 'micronumpy', 'math', 'exceptions', 'select', '_file']:
return True
return False
More information about the Pypy-commit
mailing list