##// END OF EJS Templates
Start refactoring handling of color....
Start refactoring handling of color. This is one more step into getting rid of the old way of handling colors in IPython, in particular here we move the scheme/style as a configuration option of the parser instead of passing it around into the formats functions. Also remove our own usage of deprecated arguments.

File last commit:

r22425:566cfa83
r22911:4335860f
Show More
prompts.py
26 lines | 714 B | text/x-python | PythonLexer
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 # -*- coding: utf-8 -*-
Thomas Kluyver
Remove PromptManager class...
r22425 """Being removed
"""
Brian Granger
Refactor of prompts and the displayhook....
r2781
Thomas Kluyver
Remove PromptManager class...
r22425 from IPython.utils import py3compat
Brian Granger
Refactor of prompts and the displayhook....
r2781
Thomas Kluyver
Refactor prompt handling into new prompt manager.
r5495 class LazyEvaluate(object):
"""This is used for formatting strings with values that need to be updated
Thomas Kluyver
Further cleanup of prompts code - docstrings, etc.
r5496 at that time, such as the current time or working directory."""
Thomas Kluyver
Refactor prompt handling into new prompt manager.
r5495 def __init__(self, func, *args, **kwargs):
self.func = func
self.args = args
self.kwargs = kwargs
Tayfun Sen
Fixes tests by using in_normal colors for input.
r21829
Thomas Kluyver
Refactor prompt handling into new prompt manager.
r5495 def __call__(self, **kwargs):
self.kwargs.update(kwargs)
return self.func(*self.args, **self.kwargs)
Tayfun Sen
Fixes tests by using in_normal colors for input.
r21829
Thomas Kluyver
Refactor prompt handling into new prompt manager.
r5495 def __str__(self):
MinRK
use cleaner, less safe, unicode/str in LazyEvaluate
r7581 return str(self())
Tayfun Sen
Fixes tests by using in_normal colors for input.
r21829
MinRK
support unicode in LazyEvaluate...
r7571 def __unicode__(self):
Thomas Kluyver
Replace references to unicode and basestring
r13353 return py3compat.unicode_type(self())
Tayfun Sen
Fixes tests by using in_normal colors for input.
r21829
MinRK
support unicode in LazyEvaluate...
r7571 def __format__(self, format_spec):
MinRK
fix format of LazyEvaluate based on *actual* review
r7578 return format(self(), format_spec)