imaplib.IMAP4.copy()

IMAP4.copy(message_set, new_mailbox) Copy message_set messages onto end of new_mailbox.

re.regex.split()

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

urllib.request.HTTPSHandler

class urllib.request.HTTPSHandler(debuglevel=0, context=None, check_hostname=None) A class to handle opening of HTTPS URLs. context and check_hostname have the same meaning as in http.client.HTTPSConnection. Changed in version 3.2: context and check_hostname were added.

http.server.BaseHTTPRequestHandler.client_address

client_address Contains a tuple of the form (host, port) referring to the client’s address.

readline.parse_and_bind()

readline.parse_and_bind(string) Execute the init line provided in the string argument. This calls rl_parse_and_bind() in the underlying library.

readline.remove_history_item()

readline.remove_history_item(pos) Remove history item specified by its position from the history. The position is zero-based. This calls remove_history() in the underlying library.

multiprocessing.Process.start()

start() Start the process’s activity. This must be called at most once per process object. It arranges for the object’s run() method to be invoked in a separate process.

lzma.LZMACompressor.flush()

flush() Finish the compression process, returning a bytes object containing any data stored in the compressor’s internal buffers. The compressor cannot be used after this method has been called.

datetime.datetime.today()

classmethod datetime.today() Return the current local datetime, with tzinfo None. This is equivalent to datetime.fromtimestamp(time.time()). See also now(), fromtimestamp().

pstats.Stats.add()

add(*filenames) This method of the Stats class accumulates additional profiling information into the current profiling object. Its arguments should refer to filenames created by the corresponding version of profile.run() or cProfile.run(). Statistics for identically named (re: file, line, name) functions are automatically accumulated into single function statistics.