[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

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.