dis.hasfree

dis.hasfree Sequence of bytecodes that access a free variable (note that ‘free’ in this context refers to names in the current scope that are referenced by inner scopes or names in outer scopes that are referenced from this scope. It does not include references to global or builtin scopes).

msilib.Control.condition()

condition(action, condition) Make an entry into the ControlCondition table for this control.

ipaddress.IPv6Network.overlaps()

overlaps(other)

pty.fork()

pty.fork() Fork. Connect the child’s controlling terminal to a pseudo-terminal. Return value is (pid, fd). Note that the child gets pid 0, and the fd is invalid. The parent’s return value is the pid of the child, and fd is a file descriptor connected to the child’s controlling terminal (and also to the child’s standard input and output).

email.message.Message.get_content_subtype()

get_content_subtype() Return the message’s sub-content type. This is the subtype part of the string returned by get_content_type().

ctypes.c_int32

class ctypes.c_int32 Represents the C 32-bit signed int datatype. Usually an alias for c_int.

unittest.TestCase.assertIn()

assertIn(first, second, msg=None) assertNotIn(first, second, msg=None) Test that first is (or is not) in second. New in version 3.1.

ProcessLookupError

exception ProcessLookupError Raised when a given process doesn’t exist. Corresponds to errno ESRCH.

doctest.DocTestParser.parse()

parse(string, name='') Divide the given string into examples and intervening text, and return them as a list of alternating Examples and strings. Line numbers for the Examples are 0-based. The optional argument name is a name identifying this string, and is only used for error messages.

asyncio.QueueFull

exception asyncio.QueueFull Exception raised when the put_nowait() method is called on a Queue object which is full.