re.regex.groupindex

regex.groupindex A dictionary mapping any symbolic group names defined by (?P<id>) to group numbers. The

2016-10-07 17:41:18
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
re.match.group()

match.group([group1, ...]) Returns one or more subgroups of the match. If there is a single argument, the result is a single

2016-10-07 17:41:15
re.match.pos

match.pos The value of pos which was passed to the search() or match() method of a regex

2016-10-07 17:41:16
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
readline.get_completer_delims()

readline.get_completer_delims() Set or get the word delimiters for completion. These determine the start of the word to be considered

2016-10-07 17:41:21
unicodedata.numeric()

unicodedata.numeric(chr[, default]) Returns the numeric value assigned to the character chr as float. If no such value

2016-10-07 17:46:02
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
difflib.SequenceMatcher.quick_ratio()

quick_ratio() Return an upper bound on ratio() relatively quickly.

2016-10-07 17:31:55
re.regex.match()

regex.match(string[, pos[, endpos]]) If zero or more characters at the beginning of string match this regular

2016-10-07 17:41:18