1
0
forked from VimPlug/jedi

fix lambdas in instances

This commit is contained in:
David Halter
2013-07-24 16:30:38 +02:00
parent 3c96ef8905
commit f4fdf904ee
2 changed files with 3 additions and 3 deletions

View File

@@ -178,7 +178,7 @@ class Instance(use_metaclass(cache.CachedMetaClass, Executable)):
(type(self).__name__, self.base, len(self.var_args or []))
class InstanceElement(use_metaclass(cache.CachedMetaClass)):
class InstanceElement(use_metaclass(cache.CachedMetaClass, pr.Base)):
"""
InstanceElement is a wrapper for any object, that is used as an instance
variable (e.g. self.variable or class methods).