Author: Maciej Fijalkowski <[email protected]>
Branch: look-into-all-modules
Changeset: r74113:82a21fe25558
Date: 2014-10-23 14:09 +0200
http://bitbucket.org/pypy/pypy/changeset/82a21fe25558/

Log:    don't look into the gc module

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,7 +103,7 @@
             return True
         if '.' in modname:
             modname, rest = modname.split('.', 1)
-            if modname == 'unicodedata':
+            if modname in ['unicodedata', 'gc']:
                 return False
         else:
             rest = ''
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to