bpo-34793: Drop old-style context managers in asyncio.locks (GH-17533)
diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst
index f080b03..84a52cb 100644
--- a/Doc/library/asyncio-sync.rst
+++ b/Doc/library/asyncio-sync.rst
@@ -347,8 +347,8 @@
---------
-.. deprecated:: 3.7
+.. versionchanged:: 3.9
Acquiring a lock using ``await lock`` or ``yield from lock`` and/or
:keyword:`with` statement (``with await lock``, ``with (yield from
- lock)``) is deprecated. Use ``async with lock`` instead.
+ lock)``) was removed. Use ``async with lock`` instead.