coroutine wait()
Block until the internal flag is true.
If the internal flag is true on entry, return True
immediately. Otherwise, block until another coroutine calls set()
to set the flag to true, then return True
.
This method is a coroutine.
Please login to continue.