container. Takes an entrypoint name, and exposes a `wait` method, which will return once the entrypoint has fired. """classTimeout(Exception):passdef__init__(self, entrypoint):self.attr_name ='_entrypoint_waiter_{}'.format(entrypoint) self.entrypoint = entrypoint self.done = Semaphore(value...