time.ctime()

time.ctime([secs]) Convert a time expressed in seconds since the epoch to a string representing local time. If secs is not provided or None, the current time as returned by time() is used. ctime(secs) is equivalent to asctime(localtime(secs)). Locale information is not used by ctime().

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).

os.stat_result.st_ctime_ns

st_ctime_ns Platform dependent: the time of most recent metadata change on Unix, the time of creation on Windows, expressed in nanoseconds as an integer.

xdrlib.Packer.pack_float()

Packer.pack_float(value) Packs the single-precision floating point number value.

test.support.ResourceDenied

exception test.support.ResourceDenied Subclass of unittest.SkipTest. Raised when a resource (such as a network connection) is not available. Raised by the requires() function.

class.__bases__

class.__bases__ The tuple of base classes of a class object.

email.policy.Compat32.header_store_parse()

header_store_parse(name, value) The name and value are returned unmodified.

str.rsplit()

str.rsplit(sep=None, maxsplit=-1) Return a list of the words in the string, using sep as the delimiter string. If maxsplit is given, at most maxsplit splits are done, the rightmost ones. If sep is not specified or None, any whitespace string is a separator. Except for splitting from the right, rsplit() behaves like split() which is described in detail below.