1
0
forked from VimPlug/jedi

Better debugging with the increase_indent_cm

This commit is contained in:
Dave Halter
2019-05-28 18:50:46 +02:00
parent 742f385f23
commit 255d4fc04f
2 changed files with 7 additions and 2 deletions

View File

@@ -238,7 +238,8 @@ class LazyContextWrapper(_ContextWrapperBase):
@safe_property
@memoize_method
def _wrapped_context(self):
return self._get_wrapped_context()
with debug.increase_indent_cm('Resolve lazy context wrapper'):
return self._get_wrapped_context()
def __repr__(self):
return '<%s>' % (self.__class__.__name__)