[Python-checkins] ctypes docs: fix missing `not` in variadic functions section (#102611)

kumaraditya303 webhook-mailer at python.org
Sun Apr 9 04:26:59 EDT 2023


https://github.com/python/cpython/commit/975d220bbed0e7a15b62f1d2d03557740a55f68d
commit: 975d220bbed0e7a15b62f1d2d03557740a55f68d
branch: main
author: mara004 <geisserml at gmail.com>
committer: kumaraditya303 <59607654+kumaraditya303 at users.noreply.github.com>
date: 2023-04-09T13:56:52+05:30
summary:

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

files:
M Doc/library/ctypes.rst

diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst
index d49d702e9e79..81509c0920bb 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.
 
 



More information about the Python-checkins mailing list