Implements TOS = get_awaitable(TOS), where get_awaitable(o) returns o if o is a coroutine object or a generator
object with the CO_ITERABLE_COROUTINE flag, or resolves o.
Implements TOS = get_awaitable(TOS), where get_awaitable(o) returns o if o is a coroutine object or a generator
object with the CO_ITERABLE_COROUTINE flag, or resolves o.__await__.
Terminates an async for loop. Handles an exception raised when awaiting a next item. If TOS is StopAsyncIteration
pop 7 values from the stack and restore the exception state using the second three of them. Otherwise re-raise the
exception using the three values from the stack. An exception handler block is removed from the block stack.
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (Extraneous whitespace characters are
not permitted.)
Parameters:
name - the name of the enum constant to be returned.