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
difflib.SequenceMatcher.set_seq2()

set_seq2(b) Set the second sequence to be compared. The first sequence to be compared is not changed.

2016-10-07 17:31:56
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
readline.insert_text()

readline.insert_text(string) Insert text into the line buffer at the cursor position. This calls rl_insert_text()

2016-10-07 17:41:22
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.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.regex.subn()

regex.subn(repl, string, count=0) Identical to the subn() function, using the compiled pattern.

2016-10-07 17:41:19
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
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
unicodedata.mirrored()

unicodedata.mirrored(chr) Returns the mirrored property assigned to the character chr as integer. Returns 1

2016-10-07 17:46:01