forked from VimPlug/jedi
Script.__repr__: include environment
This commit is contained in:
committed by
Dave Halter
parent
72a8ceed76
commit
08b0b668a6
@@ -157,7 +157,11 @@ class Script(object):
|
|||||||
return module
|
return module
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return '<%s: %s>' % (self.__class__.__name__, repr(self._orig_path))
|
return '<%s: %s %r>' % (
|
||||||
|
self.__class__.__name__,
|
||||||
|
repr(self._orig_path),
|
||||||
|
self._evaluator.environment,
|
||||||
|
)
|
||||||
|
|
||||||
def completions(self):
|
def completions(self):
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user