From 19ac67ae6ffd7003720be99a301e0156e3a12507 Mon Sep 17 00:00:00 2001 From: mara004 Date: Sat, 11 Mar 2023 22:58:45 +0100 Subject: [PATCH] doc/ctypes: fix missing not in variadic functions section --- 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 8fd681286b812d..918d07b0299565 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -390,7 +390,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.