From 1074451031fecb07f63b07d6edadef692c193184 Mon Sep 17 00:00:00 2001 From: ruang Date: Sun, 20 Oct 2024 13:40:33 +0800 Subject: [PATCH] Removed misleading os.kill description --- Doc/library/os.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 035c71dcd6bf4a..b4c79b520705d7 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -4561,8 +4561,7 @@ written in Python, such as a mail server's external command delivery program. only be sent to console processes which share a common console window, e.g., some subprocesses. Any other value for *sig* will cause the process to be unconditionally killed by the TerminateProcess API, and the exit code - will be set to *sig*. The Windows version of :func:`kill` additionally takes - process handles to be killed. + will be set to *sig*. See also :func:`signal.pthread_kill`.