Author: Maciej Fijalkowski <[email protected]>
Branch: look-into-all-modules
Changeset: r74109:7536cccef99c
Date: 2014-10-23 13:46 +0200
http://bitbucket.org/pypy/pypy/changeset/7536cccef99c/

Log:    unicodedata is really jit.dont_look_inside

diff --git a/pypy/module/pypyjit/policy.py b/pypy/module/pypyjit/policy.py
--- a/pypy/module/pypyjit/policy.py
+++ b/pypy/module/pypyjit/policy.py
@@ -103,6 +103,8 @@
             return True
         if '.' in modname:
             modname, rest = modname.split('.', 1)
+            if modname == 'unicodedata':
+                return False
         else:
             rest = ''
         if modname == 'pypyjit' and 'interp_resop' in rest:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to