Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Public Member Functions | |
def | complete |
def | global_matches |
def | attr_matches |
Data Fields | |
matches | |
Definition at line 48 of file rlcompleter.py.
def attr_matches | ( | self, | |
text | |||
) |
Compute matches when text contains a dot. Assuming the text is of the form NAME.NAME....[NAME], and is evaluatable in the globals of __main__, it will be evaluated and its attributes (as revealed by dir()) are used as possible completions. (For class instances, class members are are also considered.) WARNING: this can still invoke arbitrary C code, if an object with a __getattr__ hook is evaluated.
Definition at line 85 of file rlcompleter.py.
References sre_parse.dir, and rlcompleter.get_class_members().
def complete | ( | self, | |
text, | |||
state | |||
) |
Return the next possible completion for 'text'. This is called successively with state == 0, 1, 2, ... until it returns None. The completion should begin with 'text'.
Definition at line 50 of file rlcompleter.py.
def global_matches | ( | self, | |
text | |||
) |
Compute matches when text is a simple name. Return a list of all keywords, built-in functions and names currently defines in __main__ that match.
Definition at line 67 of file rlcompleter.py.
matches |
Definition at line 59 of file rlcompleter.py.