##// END OF EJS Templates
Allow to completely deactivate jedi type inference....
Allow to completely deactivate jedi type inference. For slow systems or edge case. It seem reasonable as uninstalling jedi may not be an option, and completions without types is already good.

File last commit:

r23067:5a1dcf39
r23314:d6f7f1a3
Show More
prompts.py
23 lines | 644 B | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
"""Being removed
"""
from IPython.utils import py3compat
class LazyEvaluate(object):
"""This is used for formatting strings with values that need to be updated
at that time, such as the current time or working directory."""
def __init__(self, func, *args, **kwargs):
self.func = func
self.args = args
self.kwargs = kwargs
def __call__(self, **kwargs):
self.kwargs.update(kwargs)
return self.func(*self.args, **self.kwargs)
def __str__(self):
return str(self())
def __format__(self, format_spec):
return format(self(), format_spec)