##// END OF EJS Templates
Add __future__ import for prompts module
Add __future__ import for prompts module

File last commit:

r22428:e01d4ada
r22428:e01d4ada
Show More
prompts.py
56 lines | 1.7 KiB | text/x-python | PythonLexer
Thomas Kluyver
Add __future__ import for prompts module
r22428 """Terminal input and output prompts."""
from __future__ import print_function
Thomas Kluyver
New prompts class for terminal interface
r22421 from pygments.token import Token
Thomas Kluyver
Use new prompt machinery to generate Out prompts
r22422 import sys
from IPython.core.displayhook import DisplayHook
Thomas Kluyver
New prompts class for terminal interface
r22421
class Prompts(object):
def __init__(self, shell):
self.shell = shell
def in_prompt_tokens(self, cli=None):
return [
(Token.Prompt, 'In ['),
(Token.PromptNum, str(self.shell.execution_count)),
(Token.Prompt, ']: '),
]
def _width(self):
in_tokens = self.in_prompt_tokens()
return sum(len(s) for (t, s) in in_tokens)
def continuation_prompt_tokens(self, cli=None, width=None):
if width is None:
width = self._width()
return [
(Token.Prompt, (' ' * (width - 5)) + '...: '),
]
def rewrite_prompt_tokens(self):
width = self._width()
return [
(Token.Prompt, ('-' * (width - 2)) + '> '),
]
def out_prompt_tokens(self):
return [
(Token.OutPrompt, 'Out['),
(Token.OutPromptNum, str(self.shell.execution_count)),
(Token.OutPrompt, ']: '),
]
Thomas Kluyver
Use new prompt machinery to generate Out prompts
r22422
class RichPromptDisplayHook(DisplayHook):
"""Subclass of base display hook using coloured prompt"""
def write_output_prompt(self):
sys.stdout.write(self.shell.separate_out)
Thomas Kluyver
Integrate new prompt machinery with intelli-newlining
r22423 self.prompt_end_newline = False
Thomas Kluyver
Use new prompt machinery to generate Out prompts
r22422 if self.do_full_cache:
tokens = self.shell.prompts.out_prompt_tokens()
Thomas Kluyver
Integrate new prompt machinery with intelli-newlining
r22423 if tokens and tokens[-1][1].endswith('\n'):
self.prompt_end_newline = True
Thomas Kluyver
Use new prompt machinery to generate Out prompts
r22422 if self.shell.pt_cli:
self.shell.pt_cli.print_tokens(tokens)
else:
print(*(s for t, s in tokens), sep='')