increase ptpython priority since it can use other shells as backend

This commit is contained in:
Bernardas 2017-05-18 16:57:13 +00:00
parent 7ba4b0a21b
commit 1a452c038c
1 changed files with 1 additions and 1 deletions

View File

@ -56,9 +56,9 @@ def _embed_standard_shell(namespace={}, banner=''):
return wrapper
DEFAULT_PYTHON_SHELLS = OrderedDict([
('ptpython', _embed_ptpython_shell),
('ipython', _embed_ipython_shell),
('bpython', _embed_bpython_shell),
('ptpython', _embed_ptpython_shell),
('python', _embed_standard_shell),
])