Opened 19 years ago
Closed 19 years ago
#1719 closed enhancement (fixed)
autocomplete is missing in shell
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | contrib.admin | Version: | 0.91 |
Severity: | normal | Keywords: | manage shell |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Hi,
I am missing the functionality of autocompletion in the django shell
so:
import readline
import rlcompleter
readline.parse_and_bind("tab:complete")
a=5
a=<tab><tab>
#<tab><tab> means clicking the tab-key twice
#does not show methods ,
#which work in the normal python shell (under linux)
I like django, but i love the autocompletion,
any hints what i can do to make it work in the django shell ?
Note:
See TracTickets
for help on using tickets.
(In [2842]) Fixed #1719 -- Added rlcompleter autocompletion to 'manage.py shell' if IPython is not used.