]> granicus.if.org Git - python/commitdiff
Issue #26439: Document that RTLD_NOW is always added
authorMartin Panter <vadmium+py@gmail.com>
Tue, 27 Sep 2016 05:10:40 +0000 (05:10 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Tue, 27 Sep 2016 05:10:40 +0000 (05:10 +0000)
Doc/library/ctypes.rst

index e30b0069a8567c7540650a2aeae89efd1ccc1566..368c7856be08bcfa002c7fa5d3f8eb374e19bec7 100644 (file)
@@ -1400,8 +1400,9 @@ function is used to load the library into the process, and to get a handle to
 it.
 
 The *mode* parameter can be used to specify how the library is loaded.  For
-details, consult the :manpage:`dlopen(3)` manpage, on Windows, *mode* is
-ignored.
+details, consult the :manpage:`dlopen(3)` manpage.  On Windows, *mode* is
+ignored.  On posix systems, RTLD_NOW is always added, and is not
+configurable.
 
 The *use_errno* parameter, when set to True, enables a ctypes mechanism that
 allows accessing the system :data:`errno` error number in a safe way.