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 rnd0110
Recipients
Date 2001-08-08.18:04:32
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
I use rlcompleter extensively in interactive Python
mode.
I think it could be cool if callable objects were added
"("
when completed. This way it will be much faster to 
program, without looking-up __doc__. For example:

>>> f.fil<TAB>
will give:
>>> f.fileno(_
("_" is to mark cursor position)
and:

>>> f.so<TAB>
will (as before) give:
>>> f.softspace _

History
Date User Action Args
2007-08-23 16:01:24adminlinkissue449227 messages
2007-08-23 16:01:24admincreate