diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-02-27 07:34:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-27 07:34:10 (GMT) |
commit | cba52ec0603406206af75edd2091922e353da91a (patch) | |
tree | c205c67cc25d885a07e1e44ecfdfbcbf2070743f | |
parent | 4cc363611caa1b91e1c97800c5e18f4dd5966bdd (diff) | |
download | cpython-cba52ec0603406206af75edd2091922e353da91a.zip cpython-cba52ec0603406206af75edd2091922e353da91a.tar.gz cpython-cba52ec0603406206af75edd2091922e353da91a.tar.bz2 |
gh-101100: Fix sphinx warnings in `types` module (GH-102274)
(cherry picked from commit 101a12c5767a8c6ca6e32b8e24a462d2606d24ca)
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
-rw-r--r-- | Doc/library/types.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/types.rst b/Doc/library/types.rst index e0e77df..d2cb462 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. |