readline.get_current_history_length()

readline.get_current_history_length() Return the number of items currently in the history. (This is different from ge

2016-10-07 17:41:21
readline.remove_history_item()

readline.remove_history_item(pos) Remove history item specified by its position from the history. The position is zero-based

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

readline.clear_history() Clear the current history. This calls clear_history() in the underlying library. The Python

2016-10-07 17:41:21
re.purge()

re.purge() Clear the regular expression cache.

2016-10-07 17:41:17
difflib.ndiff()

difflib.ndiff(a, b, linejunk=None, charjunk=IS_CHARACTER_JUNK) Compare a and b (lists of strings); return

2016-10-07 17:31:54
difflib.get_close_matches()

difflib.get_close_matches(word, possibilities, n=3, cutoff=0.6) Return a list of the best “good enough” matches. word

2016-10-07 17:31:53
unicodedata.combining()

unicodedata.combining(chr) Returns the canonical combining class assigned to the character chr as integer. Returns

2016-10-07 17:46:00
difflib.SequenceMatcher.get_opcodes()

get_opcodes() Return list of 5-tuples describing how to turn a into b. Each tuple is of the form (tag

2016-10-07 17:31:55
textwrap.fill()

textwrap.fill(text, width=70, **kwargs) Wraps the single paragraph in text, and returns a single string containing

2016-10-07 17:44:27
readline.read_init_file()

readline.read_init_file([filename]) Execute a readline initialization file. The default filename is the last filename used.

2016-10-07 17:41:22