[Python-checkins] gh-101100: Fix sphinx warnings in `types` module (#102274)

AlexWaygood webhook-mailer at python.org
Mon Feb 27 02:26:29 EST 2023


https://github.com/python/cpython/commit/101a12c5767a8c6ca6e32b8e24a462d2606d24ca
commit: 101a12c5767a8c6ca6e32b8e24a462d2606d24ca
branch: main
author: Nikita Sobolev <mail at sobolevn.me>
committer: AlexWaygood <Alex.Waygood at Gmail.com>
date: 2023-02-27T07:26:21Z
summary:

gh-101100: Fix sphinx warnings in `types` module (#102274)

Co-authored-by: Alex Waygood <Alex.Waygood at Gmail.com>

files:
M Doc/library/types.rst

diff --git a/Doc/library/types.rst b/Doc/library/types.rst
index 415413c4cd97..747ba58bb225 100644
--- a/Doc/library/types.rst
+++ b/Doc/library/types.rst
@@ -486,7 +486,7 @@ Coroutine Utility Functions
    The generator-based coroutine is still a :term:`generator iterator`,
    but is also considered to be a :term:`coroutine` object and is
    :term:`awaitable`.  However, it may not necessarily implement
-   the :meth:`__await__` method.
+   the :meth:`~object.__await__` method.
 
    If *gen_func* is a generator function, it will be modified in-place.
 



More information about the Python-checkins mailing list