FileExistsError

exception FileExistsError Raised when trying to create a file or directory which already exists. Corresponds to errno EEXIST.

dis.Instruction.argval

argval resolved arg value (if known), otherwise same as arg

ctypes.c_uint32

class ctypes.c_uint32 Represents the C 32-bit unsigned int datatype. Usually an alias for c_uint.

stringprep.map_table_b2()

stringprep.map_table_b2(code) Return the mapped value for code according to tableB.2 (Mapping for case-folding used with NFKC).

decimal.Context.logb()

logb(x) Returns the exponent of the magnitude of the operand’s MSD.

os.pardir

os.pardir The constant string used by the operating system to refer to the parent directory. This is '..' for Windows and POSIX. Also available via os.path.

ipaddress.IPv6Network.version

version

tempfile.gettempprefixb()

tempfile.gettempprefixb() Same as gettempprefix() but the return value is in bytes. New in version 3.5.

ctypes.pointer()

ctypes.pointer(obj) This function creates a new pointer instance, pointing to obj. The returned object is of the type POINTER(type(obj)). Note: If you just want to pass a pointer to an object to a foreign function call, you should use byref(obj) which is much faster.

sched.scheduler.enter()

scheduler.enter(delay, priority, action, argument=(), kwargs={}) Schedule an event for delay more time units. Other than the relative time, the other arguments, the effect and the return value are the same as those for enterabs(). Changed in version 3.3: argument parameter is optional. New in version 3.3: kwargs parameter was added.