Skip to Content
流畅的Python(第2版)
book

流畅的Python(第2版)

by Luciano Ramalho
April 2023
Intermediate to advanced
769 pages
25h 16m
Chinese
Posts & Telecom Press
Content preview from 流畅的Python(第2版)
异步编程
631
async with TaskGroup(wait=all) as g:
await g.spawn(coro1)
await g.spawn(coro2)
await g.spawn(coro3)
print('Results:', g.results)
任务组支持
结构化并发
,这种并发编程形式限制异步任务组中的所有活动只有一个出入
口。这类似于结构化编程,避开了
GOTO
命令,引入了块语句,限制循环和子例程的出入
口。用作异步上下文管理器的
TaskGroup
,确保在退出所在的块时,内部派生的所有任务
都已完成或被撤销,异常也已抛出。
在即将发布的
Python
版本中,
asyncio
可能会采用结构化并发。获准在
Python 3.11
中实现的“
PEP 654–Exception Groups and except*
”就是明显迹象。
Motivation
”一节提到了
Trio
的“
nurseries
”(对任务组的称呼):“参照
Trio
nurseries
,为
asyncio
实现更好的任务派生
API
,这是本
PEP
的主要动机。”
Curio
的另一个重要特色是对在同一份基准代码中使用协程和线程编程提供了更好的支
持——这对大部分重要的异步程序来说是必不可少的。以
await spawn_thread(func, ...)
启动进程,返回一个
AsyncThread
对象,接口与
Task
类似。借助特殊的
AWAIT(coro)
函数
(全大写,因为现在
await
是关键字),线程可以调用协程。
Curio ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Python高级编程(第2版)

Python高级编程(第2版)

Posts & Telecom Press, Michał Jaworski, Tarek Ziadé
Python贝叶斯分析(第2版)

Python贝叶斯分析(第2版)

Posts & Telecom Press, Osvaldo Martin
高效能PYTHON程式設計

高效能PYTHON程式設計

Micha Gorelick, Ian Ozsvald

Publisher Resources

ISBN: 9787115612366