summaryrefslogtreecommitdiff
path: root/raw_building.py
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2014-07-24 13:44:16 +0200
committerSylvain Thénault <sylvain.thenault@logilab.fr>2014-07-24 13:44:16 +0200
commite9c208da68b0dc9b3654ac9fab8b8e38fb44f357 (patch)
tree756893bbc092ed30fedc22991fe513e7269e3937 /raw_building.py
parent014c53df49a1bd388c5173f574d084d3e842fb50 (diff)
downloadastroid-git-e9c208da68b0dc9b3654ac9fab8b8e38fb44f357.tar.gz
more test fixes to avoid inter-dependency issues
Diffstat (limited to 'raw_building.py')
-rw-r--r--raw_building.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/raw_building.py b/raw_building.py
index 074a261f..c2739df9 100644
--- a/raw_building.py
+++ b/raw_building.py
@@ -331,7 +331,6 @@ Astroid_BUILDER = InspectBuilder()
_CONST_PROXY = {}
def astroid_bootstrapping():
"""astroid boot strapping the builtins module"""
- print 'astroid_bootstrapping'
# this boot strapping is necessary since we need the Const nodes to
# inspect_build builtins, and then we can proxy Const
from logilab.common.compat import builtins
@@ -346,7 +345,7 @@ def astroid_bootstrapping():
node_cls._proxied = proxy
else:
_CONST_PROXY[cls] = proxy
- MANAGER.astroid_cache[builtins.__name__] = astroid_builtin
+
astroid_bootstrapping()
# TODO : find a nicer way to handle this situation;