summaryrefslogtreecommitdiff
path: root/inference.py
diff options
context:
space:
mode:
Diffstat (limited to 'inference.py')
-rw-r--r--inference.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/inference.py b/inference.py
index 5168c3ea..66b0aa6d 100644
--- a/inference.py
+++ b/inference.py
@@ -61,18 +61,13 @@ def Const_pytype(self):
return self._proxied.qname()
nodes.Const.pytype = Const_pytype
-nodes.Const.has_dynamic_getattr = lambda x: False
-
nodes.List._proxied = MANAGER.astng_from_class(list)
nodes.List.__bases__ += (Instance,)
-nodes.List.pytype = lambda x: '__builtin__.list'
nodes.Tuple._proxied = MANAGER.astng_from_class(tuple)
nodes.Tuple.__bases__ += (Instance,)
-nodes.Tuple.pytype = lambda x: '__builtin__.tuple'
nodes.Dict.__bases__ += (Instance,)
nodes.Dict._proxied = MANAGER.astng_from_class(dict)
-nodes.Dict.pytype = lambda x: '__builtin__.dict'
class CallContext: