summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-protocol.rst
diff options
context:
space:
mode:
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2024-02-12 14:37:20 (GMT)
committerGitHub <noreply@github.com>2024-02-12 14:37:20 (GMT)
commit5ec271db3bd76f7ea723231cbe4eaa93ebe41191 (patch)
tree1a82477ed638658b10d9aebfa8824460c6e545a9 /Doc/library/asyncio-protocol.rst
parent6ca300fcc6055eb0f919cd047b2fb23764a3aea0 (diff)
downloadcpython-5ec271db3bd76f7ea723231cbe4eaa93ebe41191.zip
cpython-5ec271db3bd76f7ea723231cbe4eaa93ebe41191.tar.gz
cpython-5ec271db3bd76f7ea723231cbe4eaa93ebe41191.tar.bz2
[3.12] gh-101100: Fix Sphinx warnings in `whatsnew/2.7.rst` and related (GH-115319) (#115330)
Diffstat (limited to 'Doc/library/asyncio-protocol.rst')
-rw-r--r--Doc/library/asyncio-protocol.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
index 48fa029..e60f0ae 100644
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -417,8 +417,8 @@ Subprocess Transports
Stop the subprocess.
- On POSIX systems, this method sends SIGTERM to the subprocess.
- On Windows, the Windows API function TerminateProcess() is called to
+ On POSIX systems, this method sends :py:const:`~signal.SIGTERM` to the subprocess.
+ On Windows, the Windows API function :c:func:`!TerminateProcess` is called to
stop the subprocess.
See also :meth:`subprocess.Popen.terminate`.