##// END OF EJS Templates
undeprecate terminal.interactiveshell...
undeprecate terminal.interactiveshell move terminal.ptshell to terminal.interactiveshell, since it is the new implementation of the class. The deprecation was there while the readline implementation remained, but there is no need for it now that there is just one implementation of TerminalInteractiveShell.

File last commit:

r22425:566cfa83
r22549:2436f9bd
Show More
prompts.py
26 lines | 714 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 __unicode__(self):
return py3compat.unicode_type(self())
def __format__(self, format_spec):
return format(self(), format_spec)