summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2010-12-12 23:03:24 +0000
committerJannis Leidel <jannis@leidel.info>2010-12-12 23:03:24 +0000
commit05eb53603c69b46b70226bfdb2242732b2b169fa (patch)
treed9e6d141f9cfccbcdbf11a33ce2941a7d4a6012d /docs
parent47a5153da4216db4a4262047c513450a2a154d62 (diff)
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
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/django-admin.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 37e12c4cd8..438c599902 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -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 ...>
-------------------------