readline.set_completer_delims()

readline.set_completer_delims(string) readline.get_completer_delims() Set or get the word delimiters for completion

2016-10-07 17:41:23
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
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
re.regex.finditer()

regex.finditer(string[, pos[, endpos]]) Similar to the finditer() function, using the compiled pattern, but also

2016-10-07 17:41:18
readline.redisplay()

readline.redisplay() Change what’s displayed on the screen to reflect the current contents of the line buffer. This calls

2016-10-07 17:41:22
stringprep.in_table_c4()

stringprep.in_table_c4(code) Determine whether code is in tableC.4 (Non-character code points).

2016-10-07 17:43:27
textwrap.dedent()

textwrap.dedent(text) Remove any common leading whitespace from every line in text. This

2016-10-07 17:44:27
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
re.match.lastgroup

match.lastgroup The name of the last matched capturing group, or None if the group didn’t have a name, or if no

2016-10-07 17:41:16
re.search()

re.search(pattern, string, flags=0) Scan through string looking for the first location where the regular expression

2016-10-07 17:41:20