Fixed #14187 -- Added support for bpython to shell management command. Thanks, Jeremy Dunck.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14896 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel 2010-12-12 23:03:24 +00:00
parent 47a5153da4
commit 05eb53603c
2 changed files with 9 additions and 4 deletions

View file

@ -747,13 +747,14 @@ shell
Starts the Python interactive interpreter.
Django will use IPython_, if it's installed. If you have IPython installed and
want to force use of the "plain" Python interpreter, use the ``--plain``
option, like so::
Django will use IPython_ or bpython_ if either is installed. If you have a
rich shell installed but want to force use of the "plain" Python interpreter,
use the ``--plain`` option, like so::
django-admin.py shell --plain
.. _IPython: http://ipython.scipy.org/
.. _bpython: http://bpython-interpreter.org/
sql <appname appname ...>
-------------------------