[3.11] ctypes docs: fix missing `not` in variadic functions section (GH-102611) (#103425)

(cherry picked from commit 975d220bbe)

Co-authored-by: mara004 <geisserml@gmail.com>
This commit is contained in:
Miss Islington (bot) 2023-04-25 03:51:39 -07:00 committed by GitHub
parent a59dc1fb43
commit 03f8d8f0d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.