1
0
forked from VimPlug/jedi

Fix super call goto for multiple inheritance, fixes #1311

This commit is contained in:
Dave Halter
2019-06-24 09:53:56 +02:00
parent ebdae87821
commit 265abe1d08
3 changed files with 45 additions and 11 deletions

View File

@@ -241,7 +241,7 @@ class _ContextWrapperBase(HelperContextMixin):
return cls(*args, **kwargs)
def __getattr__(self, name):
assert name != '_wrapped_context'
assert name != '_wrapped_context', 'Problem with _get_wrapped_context'
return getattr(self._wrapped_context, name)