From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 27 Feb 2023 07:33:05 +0000 (-0800) Subject: gh-101100: Fix sphinx warnings in `types` module (GH-102274) X-Git-Tag: v3.11.3~99 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bd4a7090385c52e3c88477cc3027f73257a9171e;p=thirdparty%2FPython%2Fcpython.git gh-101100: Fix sphinx warnings in `types` module (GH-102274) (cherry picked from commit 101a12c5767a8c6ca6e32b8e24a462d2606d24ca) Co-authored-by: Nikita Sobolev Co-authored-by: Alex Waygood --- diff --git a/Doc/library/types.rst b/Doc/library/types.rst index aafba29b4cf6..3416871c0c1f 100644 --- a/Doc/library/types.rst +++ b/Doc/library/types.rst @@ -480,7 +480,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.