@@ -1365,7 +1365,7 @@ details, consult the :manpage:`dlopen(3)` manpage. On Windows, *mode* is
13651365ignored. On posix systems, RTLD_NOW is always added, and is not
13661366configurable.
13671367
1368- The *use_errno * parameter, when set to True , enables a ctypes mechanism that
1368+ The *use_errno * parameter, when set to true , enables a ctypes mechanism that
13691369allows accessing the system :data: `errno ` error number in a safe way.
13701370:mod: `ctypes ` maintains a thread-local copy of the systems :data: `errno `
13711371variable; if you call foreign functions created with ``use_errno=True `` then the
@@ -1376,7 +1376,7 @@ The function :func:`ctypes.get_errno` returns the value of the ctypes private
13761376copy, and the function :func: `ctypes.set_errno ` changes the ctypes private copy
13771377to a new value and returns the former value.
13781378
1379- The *use_last_error * parameter, when set to True , enables the same mechanism for
1379+ The *use_last_error * parameter, when set to true , enables the same mechanism for
13801380the Windows error code which is managed by the :func: `GetLastError ` and
13811381:func: `SetLastError ` Windows API functions; :func: `ctypes.get_last_error ` and
13821382:func: `ctypes.set_last_error ` are used to request and change the ctypes private
@@ -1586,7 +1586,7 @@ type and the argument types of the function.
15861586
15871587 The returned function prototype creates functions that use the standard C
15881588 calling convention. The function will release the GIL during the call. If
1589- *use_errno * is set to True , the ctypes private copy of the system
1589+ *use_errno * is set to true , the ctypes private copy of the system
15901590 :data: `errno ` variable is exchanged with the real :data: `errno ` value before
15911591 and after the call; *use_last_error * does the same for the Windows error
15921592 code.
0 commit comments