]> git.wh0rd.org - home.git/blame - .ipython/profile_default/ipython_config.py
ipython: fix up to work w/ipython-5 and py3
[home.git] / .ipython / profile_default / ipython_config.py
CommitLineData
22072cde
MF
1from IPython.terminal.prompts import Prompts, Token
2
3
4class MyPrompt(Prompts):
5 def in_prompt_tokens(self, cli=None):
6 return [(Token.Prompt, '>>> ')]
7
8 def out_prompt_tokens(self, cli=None):
9 return []
10
11
12c.InteractiveShell.prompts_class = MyPrompt