diff options
author | mara004 <geisserml@gmail.com> | 2023-04-09 08:26:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-09 08:26:52 (GMT) |
commit | 975d220bbed0e7a15b62f1d2d03557740a55f68d (patch) | |
tree | 5e535bc2ef3e661af21f695591bbdc036a4f493b | |
parent | 86d20441557bedbea3dadd5d0818a492148335bd (diff) | |
download | cpython-975d220bbed0e7a15b62f1d2d03557740a55f68d.zip cpython-975d220bbed0e7a15b62f1d2d03557740a55f68d.tar.gz cpython-975d220bbed0e7a15b62f1d2d03557740a55f68d.tar.bz2 |
ctypes docs: fix missing `not` in variadic functions section (#102611)
-rw-r--r-- | Doc/library/ctypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index d49d702..81509c0 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. |