https://github.com/python/cpython/commit/d73ac0eba992a33992210915739d73250bf6d38d commit: d73ac0eba992a33992210915739d73250bf6d38d branch: master author: Kevin Mai-Husan Chia <mhchia at users.noreply.github.com> committer: Lisa Roach <lisaroach14 at gmail.com> date: 2019年02月13日T18:39:25-08:00 summary: Fix typo: equivalent code of `async with cond` (GH-11681) files: M Doc/library/asyncio-sync.rst diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst index 18b562970436..18da18873dbf 100644 --- a/Doc/library/asyncio-sync.rst +++ b/Doc/library/asyncio-sync.rst @@ -180,11 +180,11 @@ Condition cond = asyncio.Condition() # ... later - await lock.acquire() + await cond.acquire() try: await cond.wait() finally: - lock.release() + cond.release() .. coroutinemethod:: acquire()