summaryrefslogtreecommitdiff
path: root/astroid/tree/scoped_nodes.py
diff options
context:
space:
mode:
authorCeridwen <ceridwenv@gmail.com>2015-11-21 16:27:17 -0500
committerCeridwen <ceridwenv@gmail.com>2015-11-21 16:27:17 -0500
commitb02f0d7df4b9bf5c2acd0cf0714a32fb30cc76f9 (patch)
treedd611e496a3d7840ba491ce0160bb27d657f85a2 /astroid/tree/scoped_nodes.py
parentd05d91f9fee915a7375f70df5df1e7d46fa79c15 (diff)
downloadastroid-git-b02f0d7df4b9bf5c2acd0cf0714a32fb30cc76f9.tar.gz
Clean up caching of and references to builtins mock AST
Diffstat (limited to 'astroid/tree/scoped_nodes.py')
-rw-r--r--astroid/tree/scoped_nodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/tree/scoped_nodes.py b/astroid/tree/scoped_nodes.py
index a5fe473c..c9cd843e 100644
--- a/astroid/tree/scoped_nodes.py
+++ b/astroid/tree/scoped_nodes.py
@@ -968,7 +968,7 @@ class CallSite(object):
@util.register_implementation(treeabc.Lambda)
class Lambda(mixins.FilterStmtsMixin, LocalsDictNodeNG):
_astroid_fields = ('args', 'body',)
- _other_other_fields = ('locals',)
+ # _other_other_fields = ('locals',)
name = '<lambda>'
# function's type, 'function' | 'method' | 'staticmethod' | 'classmethod'