Cancels a generator by calling its return method and handles rescheduling if it yields in finally. Prefer this over calling return directly.
return
yield
finally
Generator to cancel
Optional
Generator to resume if cancellation yields, used internally.
The result from calling return
Cancels a generator by calling its
return
method and handles rescheduling if ityield
s infinally
. Prefer this over callingreturn
directly.