diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-25 11:34:04 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-25 11:34:04 (GMT) |
commit | 8b905bd9d40f0545e054737b8796a18366546ffc (patch) | |
tree | b2b62946432510b703420013a926d7a5155ade25 /Doc/library/os.rst | |
parent | e0be4232971edca23438cc3d79761141f2de124f (diff) | |
download | cpython-8b905bd9d40f0545e054737b8796a18366546ffc.zip cpython-8b905bd9d40f0545e054737b8796a18366546ffc.tar.gz cpython-8b905bd9d40f0545e054737b8796a18366546ffc.tar.bz2 |
Issue #13226: Add RTLD_xxx constants to the os module. These constants can by
used with sys.setdlopenflags().
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index b2a16d9..fb794d3 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1393,6 +1393,19 @@ or `the MSDN <http://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Window the C library. +.. data:: RTLD_LAZY + RTLD_NOW + RTLD_GLOBAL + RTLD_LOCAL + RTLD_NODELETE + RTLD_NOLOAD + RTLD_DEEPBIND + + See the Unix manual page :manpage:`dlopen(3)`. + + .. versionadded:: 3.3 + + .. _os-file-dir: Files and Directories |