msvcrt.getwche()

msvcrt.getwche() Wide char variant of getche(), returning a Unicode value.

wsgiref.util.is_hop_by_hop()

wsgiref.util.is_hop_by_hop(header_name) Return true if ‘header_name’ is an HTTP/1.1 “Hop-by-Hop” header, as defined by RFC 2616.

io.TextIOBase.tell()

tell() Return the current stream position as an opaque number. The number does not usually represent a number of bytes in the underlying binary storage.

os.lchown()

os.lchown(path, uid, gid) Change the owner and group id of path to the numeric uid and gid. This function will not follow symbolic links. As of Python 3.3, this is equivalent to os.chown(path, uid, gid, follow_symlinks=False). Availability: Unix.

typing.ValuesView

class typing.ValuesView(MappingView[VT_co]) A generic version of collections.abc.ValuesView.

datetime.datetime.max

datetime.max The latest representable datetime, datetime(MAXYEAR, 12, 31, 23, 59, 59, 999999, tzinfo=None).

os.getloadavg()

os.getloadavg() Return the number of processes in the system run queue averaged over the last 1, 5, and 15 minutes or raises OSError if the load average was unobtainable. Availability: Unix.

venv.EnvBuilder.post_setup()

post_setup(context) A placeholder method which can be overridden in third party implementations to pre-install packages in the virtual environment or perform other post-creation steps.

resource.setrlimit()

resource.setrlimit(resource, limits) Sets new limits of consumption of resource. The limits argument must be a tuple (soft, hard) of two integers describing the new limits. A value of RLIM_INFINITY can be used to request a limit that is unlimited. Raises ValueError if an invalid resource is specified, if the new soft limit exceeds the hard limit, or if a process tries to raise its hard limit. Specifying a limit of RLIM_INFINITY when the hard or system limit for that resource is not unlimited

msilib.Control

class msilib.Control(dlg, name) Base class of the dialog controls. dlg is the dialog object the control belongs to, and name is the control’s name. event(event, argument, condition=1, ordering=None) Make an entry into the ControlEvent table for this control. mapping(event, attribute) Make an entry into the EventMapping table for this control. condition(action, condition) Make an entry into the ControlCondition table for this control.