From 1939d8783df772805e30e129ad0383e135aad68d Mon Sep 17 00:00:00 2001 From: mara004 Date: Sun, 9 Apr 2023 10:26:52 +0200 Subject: [PATCH] ctypes docs: fix missing `not` in variadic functions section (GH-102611) (cherry picked from commit 975d220bbed0e7a15b62f1d2d03557740a55f68d) Co-authored-by: mara004 --- Doc/library/ctypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 8690f70fd2e072..2be2473f9b9a42 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -389,7 +389,7 @@ regular, non-variadic, function arguments: libc.printf.argtypes = [ctypes.c_char_p] -Because specifying the attribute does inhibit portability it is advised to always +Because specifying the attribute does not inhibit portability it is advised to always specify ``argtypes`` for all variadic functions.