diff options
Diffstat (limited to 'manager.py')
| -rw-r--r-- | manager.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -178,6 +178,9 @@ class AstroidManager(OptionsProviderMixIn): modname = modname or module.__name__ if modname in self.astroid_cache: return self.astroid_cache[modname] + from logilab.common.compat import builtins + if module is builtins: + print 'BT LOOKUP' try: # some builtin modules don't have __file__ attribute filepath = module.__file__ |
