These are simple tools used by the implementation. It should probably not be used by end users.
Bases: object
Handle to a /dev/ char device kernel interface. This supports the context manager protocol.
Return the value of CLOCK_MONOTONIC as float seconds. Replace me if Python ever gets this in the standard library. Only works on Linux.
Bases: tuple
finfo(type, mask)
itemgetter(item, ...) –> itemgetter object
Return a callable object that fetches the given item(s) from its operand. After, f=itemgetter(2), the call f(r) returns r[2]. After, g=itemgetter(2,5,3), the call g(r) returns (r[2], r[5], r[3])
itemgetter(item, ...) –> itemgetter object
Return a callable object that fetches the given item(s) from its operand. After, f=itemgetter(2), the call f(r) returns r[2]. After, g=itemgetter(2,5,3), the call g(r) returns (r[2], r[5], r[3])
Construct a mutable collections.namedtuple with a MASK tracking feature.