re.regex.split()

regex.split(string, maxsplit=0) Identical to the split() function, using the compiled pattern.

2016-10-07 17:41:19
stringprep.map_table_b2()

stringprep.map_table_b2(code) Return the mapped value for code according to tableB.2 (Mapping for case-folding used

2016-10-07 17:43:28
difflib.diff_bytes()

difflib.diff_bytes(dfunc, a, b, fromfile=b'', tofile=b'', fromfiledate=b'', tofiledate=b'', n=3, lineterm=b'\n') Compare a

2016-10-07 17:31:53
textwrap.TextWrapper.width

width (default: 70) The maximum length of wrapped lines. As long as there are no individual words in the input

2016-10-07 17:44:30
readline.get_history_item()

readline.get_history_item(index) Return the current contents of history item at index. The item index is one-based

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

stringprep.in_table_c21_c22(code) Determine whether code is in tableC.2 (Control characters, union of C.2.1 and C.2

2016-10-07 17:43:27
re.regex.sub()

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

2016-10-07 17:41:19
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