我的代码看起来有点像:
@asyncio.coroutine
def myfunction():
result = yield from bot.whois(something) # returns an asyncio.Future()
return result['account']
我如何将其转换为可在 Python 2.7 中使用的东西?这甚至可能吗?
将“yield from”语句转换为 Python 2.7 代码 的问题不适用,因为它会丢弃结果。
我的代码看起来有点像:
@asyncio.coroutine
def myfunction():
result = yield from bot.whois(something) # returns an asyncio.Future()
return result['account']
我如何将其转换为可在 Python 2.7 中使用的东西?这甚至可能吗?
将“yield from”语句转换为 Python 2.7 代码 的问题不适用,因为它会丢弃结果。