[pypy-svn] r70529 - pypy/branch/jit-profiling/pypy/module/pypyjit
fijal at codespeak.net
fijal at codespeak.net
Tue Jan 12 14:56:49 CET 2010
Author: fijal
Date: Tue Jan 12 14:56:48 2010
New Revision: 70529
Modified:
pypy/branch/jit-profiling/pypy/module/pypyjit/policy.py
Log:
add _lsprof to policy to look into
Modified: pypy/branch/jit-profiling/pypy/module/pypyjit/policy.py
==============================================================================
--- pypy/branch/jit-profiling/pypy/module/pypyjit/policy.py (original)
+++ pypy/branch/jit-profiling/pypy/module/pypyjit/policy.py Tue Jan 12 14:56:48 2010
@@ -8,7 +8,8 @@
if '.' in modname:
modname, _ = modname.split('.', 1)
- if modname in ['pypyjit', 'signal', 'micronumpy', 'math', 'exceptions']:
+ if modname in ['pypyjit', 'signal', 'micronumpy', 'math', 'exceptions',
+ '_lsprof']:
return True
return False
More information about the Pypy-commit
mailing list