readline.set_completer()

readline.set_completer([function]) Set or remove the completer function. If function is specified, it will be used

2016-10-07 17:41:23
readline.set_completion_display_matches_hook()

readline.set_completion_display_matches_hook([function]) Set or remove the completion display function. If function

2016-10-07 17:41:23
re.compile()

re.compile(pattern, flags=0) Compile a regular expression pattern into a regular expression object, which can be used for matching

2016-10-07 17:41:13
string.ascii_uppercase

string.ascii_uppercase The uppercase letters 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'. This value is not locale-dependent and

2016-10-07 17:43:23
readline.set_startup_hook()

readline.set_startup_hook([function]) Set or remove the function invoked by the rl_startup_hook callback of the

2016-10-07 17:41:24
readline.write_history_file()

readline.write_history_file([filename]) Save the history list to a readline history file, overwriting any existing file. The

2016-10-07 17:41:24
string.Formatter.vformat()

vformat(format_string, args, kwargs) This function does the actual work of formatting. It is exposed as a separate function

2016-10-07 17:43:24
re.subn()

re.subn(pattern, repl, string, count=0, flags=0) Perform the same operation as sub(), but return a tuple (new_string

2016-10-07 17:41:20
string.Formatter.get_value()

get_value(key, args, kwargs) Retrieve a given field value. The key argument will be either an integer or a string.

2016-10-07 17:43:24
textwrap.TextWrapper.break_long_words

break_long_words (default: True) If true, then words longer than width will be broken in order to

2016-10-07 17:44:28