From: mara004 Date: Sun, 9 Apr 2023 08:26:52 +0000 (+0200) Subject: ctypes docs: fix missing `not` in variadic functions section (#102611) X-Git-Tag: v3.12.0b1~592 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=975d220bbed0e7a15b62f1d2d03557740a55f68d;p=thirdparty%2FPython%2Fcpython.git ctypes docs: fix missing `not` in variadic functions section (#102611) --- diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index d49d702e9e79..81509c0920bb 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.