ctypes docs: fix missing not in variadic functions section (#102611)

This commit is contained in:
mara004 2023-04-09 10:26:52 +02:00 committed by GitHub
parent 86d2044155
commit 975d220bbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -390,7 +390,7 @@ regular, non-variadic, function arguments:
libc.printf.argtypes = [ctypes.c_char_p] 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. specify ``argtypes`` for all variadic functions.