diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2024-11-27 14:38:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-27 14:38:55 (GMT) |
commit | 9328db7652677a23192cb51b0324a0fdbfa587c9 (patch) | |
tree | 41f2ef341efc2ea37d40336b55e7f172a8ad3d3f /Doc | |
parent | 3cf83d91a5baf3600dd60f7aaaf4fb6d73c4b8a9 (diff) | |
download | cpython-9328db7652677a23192cb51b0324a0fdbfa587c9.zip cpython-9328db7652677a23192cb51b0324a0fdbfa587c9.tar.gz cpython-9328db7652677a23192cb51b0324a0fdbfa587c9.tar.bz2 |
Fix indentation for contextlib.asynccontextmanager docs (#127333)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/contextlib.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst index f5b3494..e8f264f 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -151,9 +151,9 @@ Functions and classes provided: created by :func:`asynccontextmanager` to meet the requirement that context managers support multiple invocations in order to be used as decorators. - .. versionchanged:: 3.10 - Async context managers created with :func:`asynccontextmanager` can - be used as decorators. + .. versionchanged:: 3.10 + Async context managers created with :func:`asynccontextmanager` can + be used as decorators. .. function:: closing(thing) |