urllib.request.HTTPErrorProcessor.https_response()

HTTPErrorProcessor.https_response() Process HTTPS error responses. The behavior is same as http_response().

imaplib.IMAP4.subscribe()

IMAP4.subscribe(mailbox) Subscribe to new mailbox.

curses.ascii.ascii()

curses.ascii.ascii(c) Return the ASCII value corresponding to the low 7 bits of c.

range.stop

stop The value of the stop parameter

xml.sax.handler.ContentHandler.processingInstruction()

ContentHandler.processingInstruction(target, data) Receive notification of a processing instruction. The Parser will invoke this method once for each processing instruction found: note that processing instructions may occur before or after the main document element. A SAX parser should never report an XML declaration (XML 1.0, section 2.8) or a text declaration (XML 1.0, section 4.3.1) using this method.

plistlib.load()

plistlib.load(fp, *, fmt=None, use_builtin_types=True, dict_type=dict) Read a plist file. fp should be a readable and binary file object. Return the unpacked root object (which usually is a dictionary). The fmt is the format of the file and the following values are valid: None: Autodetect the file format FMT_XML: XML file format FMT_BINARY: Binary plist format If use_builtin_types is true (the default) binary data will be returned as instances of bytes, otherwise it is returned as insta

decimal.Context.min()

min(x, y) Compares two values numerically and returns the minimum.

pprint.pprint()

pprint.pprint(object, stream=None, indent=1, width=80, depth=None, *, compact=False) Prints the formatted representation of object on stream, followed by a newline. If stream is None, sys.stdout is used. This may be used in the interactive interpreter instead of the print() function for inspecting values (you can even reassign print = pprint.pprint for use within a scope). indent, width, depth and compact will be passed to the PrettyPrinter constructor as formatting parameters. Changed in v

dummy_threading

Source code: Lib/dummy_threading.py This module provides a duplicate interface to the threading module. It is meant to be imported when the _thread module is not provided on a platform. Suggested usage is: try: import threading except ImportError: import dummy_threading as threading Be careful to not use this module where deadlock might occur from a thread being created that blocks waiting for another thread to be created. This often occurs with blocking I/O.

email.message.Message.__len__()

__len__() Return the total number of headers, including duplicates.