imaplib.IMAP4.login()

IMAP4.login(user, password) Identify the client using a plaintext password. The password will be quoted.

wsgiref.simple_server.WSGIServer.get_app()

get_app() Returns the currently-set application callable.

os.sysconf_names

os.sysconf_names Dictionary mapping names accepted by sysconf() to the integer values defined for those names by the host operating system. This can be used to determine the set of names known to the system. Availability: Unix.

stringprep.in_table_c12()

stringprep.in_table_c12(code) Determine whether code is in tableC.1.2 (Non-ASCII space characters).

operator.truediv()

operator.truediv(a, b) operator.__truediv__(a, b) Return a / b where 2/3 is .66 rather than 0. This is also known as “true” division.

readline.insert_text()

readline.insert_text(string) Insert text into the line buffer at the cursor position. This calls rl_insert_text() in the underlying library, but ignores the return value.

datetime.datetime.tzinfo

datetime.tzinfo The object passed as the tzinfo argument to the datetime constructor, or None if none was passed.

http.client.HTTPResponse.readinto()

HTTPResponse.readinto(b) Reads up to the next len(b) bytes of the response body into the buffer b. Returns the number of bytes read. New in version 3.3.

xml.etree.ElementTree.XMLPullParser.close()

close() Signal the parser that the data stream is terminated. Unlike XMLParser.close(), this method always returns None. Any events not yet retrieved when the parser is closed can still be read with read_events().

logging.handlers.WatchedFileHandler.emit()

emit(record) Outputs the record to the file, but first checks to see if the file has changed. If it has, the existing stream is flushed and closed and the file opened again, before outputting the record to the file.