Module tab_completion :: Class tab_completion
[hide private]
[frames] | no frames]

Class tab_completion

source code

Instance Methods [hide private]
 
__init__(self, name_space={}, print_flag=0)
Function for tab completion.
source code
 
finish(self, input, state)
Return the next possible completion for 'text'
source code
 
create_sublist(self)
Function to create the dictionary of options for tab completion.
source code
 
create_list(self)
Function to create the dictionary of options for tab completion.
source code
 
get_class_members(self, temp_class) source code
Method Details [hide private]

__init__(self, name_space={}, print_flag=0)
(Constructor)

source code 

Function for tab completion.

Some of this code is stolen from the python rlcompleter code.