This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author lilaboc
Recipients dieresys, facundobatista, georg.brandl, gpolo, lilaboc, pitrou, rnd0110
Date 2010-02-10.08:19:15
SpamBayes Score 3.5754756e-06
Marked as misclassified No
Message-id <1265789959.13.0.400404108309.issue7898@psf.upfronthosting.co.za>
In-reply-to
Content
When I use rlcompleter in interactive Python mode, I think it will be more convenient if autocomplete produce a real tab when text-to-autocomplete is empty.
For example:
>>> def test():
...<TAB>
will give:
Display all 182 possibilities? (y or n)
instead of a real tab

So, when indentation is needed, 4 times of spacebar pressing are required. That's why I think it will make more sense to just return a tab character when there is nothing to autocomplete.

This behavior is similar to autocompletion in ipython
History
Date User Action Args
2010-02-10 08:19:20lilabocsetrecipients: + lilaboc, georg.brandl, facundobatista, rnd0110, pitrou, gpolo, dieresys
2010-02-10 08:19:19lilabocsetmessageid: <1265789959.13.0.400404108309.issue7898@psf.upfronthosting.co.za>
2010-02-10 08:19:17lilaboclinkissue7898 messages
2010-02-10 08:19:16lilaboccreate