]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
ctypes docs: fix missing `not` in variadic functions section (#102611)
authormara004 <geisserml@gmail.com>
Sun, 9 Apr 2023 08:26:52 +0000 (10:26 +0200)
committerGitHub <noreply@github.com>
Sun, 9 Apr 2023 08:26:52 +0000 (13:56 +0530)
Doc/library/ctypes.rst

index d49d702e9e79995e3cd5484edcfd51bc090b3c12..81509c0920bb6ec4e262ed5b4c0e359d8f02b5a5 100644 (file)
@@ -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.