| 
									
										
										
										
											1999-06-21 18:25:49 +00:00
										 |  |  | \section{\module{rlcompleter} --- | 
					
						
							| 
									
										
										
										
											2000-10-10 17:03:45 +00:00
										 |  |  |          Completion function for GNU readline} | 
					
						
							| 
									
										
										
										
											1999-06-21 18:25:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | \declaremodule{standard}{rlcompleter} | 
					
						
							| 
									
										
										
										
											2000-07-06 04:51:04 +00:00
										 |  |  |   \platform{Unix} | 
					
						
							| 
									
										
										
										
											2000-12-01 15:25:23 +00:00
										 |  |  | \sectionauthor{Moshe Zadka}{moshez@zadka.site.co.il} | 
					
						
							| 
									
										
										
										
											2000-10-10 17:03:45 +00:00
										 |  |  | \modulesynopsis{Python identifier completion for the GNU readline library.} | 
					
						
							| 
									
										
										
										
											1999-06-21 18:25:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | The \module{rlcompleter} module defines a completion function for | 
					
						
							| 
									
										
										
										
											2000-07-06 04:51:04 +00:00
										 |  |  | the \refmodule{readline} module by completing valid Python identifiers | 
					
						
							|  |  |  | and keywords. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-10 16:15:08 +00:00
										 |  |  | This module is \UNIX-specific due to its dependence on the | 
					
						
							| 
									
										
										
										
											2000-07-06 04:51:04 +00:00
										 |  |  | \refmodule{readline} module. | 
					
						
							| 
									
										
										
										
											1999-06-21 18:25:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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}. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-06 04:51:04 +00:00
										 |  |  | If called for \var{text} that doesn't include a period character | 
					
						
							| 
									
										
										
										
											1999-06-21 18:25:49 +00:00
										 |  |  | (\character{.}), it will complete from names currently defined in | 
					
						
							| 
									
										
										
										
											1999-08-02 14:13:09 +00:00
										 |  |  | \refmodule[main]{__main__}, \refmodule[builtin]{__builtin__} and | 
					
						
							|  |  |  | keywords (as defined by the \refmodule{keyword} module). | 
					
						
							| 
									
										
										
										
											1999-06-21 18:25:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | If called for a dotted name, it will try to evaluate anything without | 
					
						
							| 
									
										
										
										
											2001-07-06 20:30:11 +00:00
										 |  |  | obvious side-effects (functions will not be evaluated, but it | 
					
						
							| 
									
										
										
										
											2003-04-14 15:32:18 +00:00
										 |  |  | can generate calls to \method{__getattr__()}) up to the last part, and | 
					
						
							| 
									
										
										
										
											1999-06-21 18:25:49 +00:00
										 |  |  | find matches for the rest via the \function{dir()} function. | 
					
						
							|  |  |  | \end{methoddesc} |