librlcompleter.tex 2.11 KB
Newer Older
1
\section{\module{rlcompleter} ---
2
         Completion function for GNU readline}
3 4

\declaremodule{standard}{rlcompleter}
5
  \platform{Unix}
6
\sectionauthor{Moshe Zadka}{moshez@zadka.site.co.il}
7
\modulesynopsis{Python identifier completion for the GNU readline library.}
8 9

The \module{rlcompleter} module defines a completion function for
10 11 12 13 14
the \refmodule{readline} module by completing valid Python identifiers
and keywords.

This module is \UNIX-specific due to it's dependence on the
\refmodule{readline} module.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

The \module{rlcompleter} module defines the \class{Completer} class.

Example:

\begin{verbatim}
>>> import rlcompleter
>>> import readline
>>> readline.parse_and_bind("tab: complete")
>>> readline. <TAB PRESSED>
readline.__doc__          readline.get_line_buffer  readline.read_init_file
readline.__file__         readline.insert_text      readline.set_completer
readline.__name__         readline.parse_and_bind
>>> readline.
\end{verbatim}

The \module{rlcompleter} module is designed for use with Python's
interactive mode.  A user can add the following lines to his or her
initialization file (identified by the \envvar{PYTHONSTARTUP}
environment variable) to get automatic \kbd{Tab} completion:

\begin{verbatim}
try:
    import readline
except ImportError:
    print "Module readline not available."
else:
    import rlcompleter
    readline.parse_and_bind("tab: complete")
\end{verbatim}


\subsection{Completer Objects \label{completer-objects}}

Completer objects have the following method:

\begin{methoddesc}[Completer]{complete}{text, state}
Return the \var{state}th completion for \var{text}.

54
If called for \var{text} that doesn't include a period character
55
(\character{.}), it will complete from names currently defined in
56 57
\refmodule[main]{__main__}, \refmodule[builtin]{__builtin__} and
keywords (as defined by the \refmodule{keyword} module).
58 59 60 61 62 63

If called for a dotted name, it will try to evaluate anything without
obvious side-effects (i.e., functions will not be evaluated, but it
can generate calls to \method{__getattr__()}) upto the last part, and
find matches for the rest via the \function{dir()} function.
\end{methoddesc}