Is it safe to do this?
@ndb.tasklet
def foo():
# Note that I do not yield right here
future = some_key.get_async()
# Perform some other code
if some_condition:
# I need the get_async result here
entity = yield future
# I also need the get_async result here.
# If some_condition was true, I would be yielding this future
# for the second time. Is this ok?
entity = yield future
Please don't tell me that I could just yield at the top of the function and use entity in the rest of the code. My actual function is a little more elaborate than this, and I have a few conditional codepaths that may need to use entity and I want to yield at the latest moment possible to be able to perform my other code while the entity is being fetched in the background.
