From f8f455b87d6ac1af7bb410d03f87de418055393c Mon Sep 17 00:00:00 2001 From: mara004 Date: Sat, 11 Mar 2023 22:49:37 +0100 Subject: [PATCH] doc/ctypes: fix missing `not` in variadic functions section Unless I misunderstood something, I believe this phrase lacks a `not`. --- 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 282dff38c206b0..8ed6a659b4ec61 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.