Python 2中有关协程的详细说明http://www.dabeaz.com/coroutines/。但是,在Python 3 official documentation中搜索关键字" coroutine"和"(收益)"我只找到特定于asyncio模块的asyncio.coroutines,他们使用" yield from"语法。
答案 0 :(得分:2)
是。 Beazley写的所有内容都继续适用于Python 3。
请注意。在2.7 yield statement doc中,&#39; coroutine&#39;仅出现在参见PEP 0342标题中。对于3.x,带有该链接的See also部分已移至previous chapter中的 yield expression 部分。 3.x yield statement doc已(yield <expr>)
而非(yield)
。