1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-25 01:04:16 +00:00

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

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),
])