@@ -1358,7 +1358,7 @@ details, consult the :manpage:`dlopen(3)` manpage. On Windows, *mode* is
13581358ignored. On posix systems, RTLD_NOW is always added, and is not
13591359configurable.
13601360
1361- The *use_errno * parameter, when set to True , enables a ctypes mechanism that
1361+ The *use_errno * parameter, when set to true , enables a ctypes mechanism that
13621362allows accessing the system :data: `errno ` error number in a safe way.
13631363:mod: `ctypes ` maintains a thread-local copy of the systems :data: `errno `
13641364variable; if you call foreign functions created with ``use_errno=True `` then the
@@ -1369,7 +1369,7 @@ The function :func:`ctypes.get_errno` returns the value of the ctypes private
13691369copy, and the function :func: `ctypes.set_errno ` changes the ctypes private copy
13701370to a new value and returns the former value.
13711371
1372- The *use_last_error * parameter, when set to True , enables the same mechanism for
1372+ The *use_last_error * parameter, when set to true , enables the same mechanism for
13731373the Windows error code which is managed by the :func: `GetLastError ` and
13741374:func: `SetLastError ` Windows API functions; :func: `ctypes.get_last_error ` and
13751375:func: `ctypes.set_last_error ` are used to request and change the ctypes private
@@ -1579,7 +1579,7 @@ type and the argument types of the function.
15791579
15801580 The returned function prototype creates functions that use the standard C
15811581 calling convention. The function will release the GIL during the call. If
1582- *use_errno * is set to True , the ctypes private copy of the system
1582+ *use_errno * is set to true , the ctypes private copy of the system
15831583 :data: `errno ` variable is exchanged with the real :data: `errno ` value before
15841584 and after the call; *use_last_error * does the same for the Windows error
15851585 code.
0 commit comments