diff options
author | Georg Brandl <georg@python.org> | 2009-10-27 14:36:50 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-10-27 14:36:50 (GMT) |
commit | 0dfdf006a6e421cf9a8155b6d20e6e39c6387e92 (patch) | |
tree | 201070e9a93325f635f5a800f11ea1b4c46ce17a /Doc/library/dl.rst | |
parent | cda25a1af6e5adfafa5a61961fa6a30be53ddd5a (diff) | |
download | cpython-0dfdf006a6e421cf9a8155b6d20e6e39c6387e92.zip cpython-0dfdf006a6e421cf9a8155b6d20e6e39c6387e92.tar.gz cpython-0dfdf006a6e421cf9a8155b6d20e6e39c6387e92.tar.bz2 |
Merged revisions 74207 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74207 | georg.brandl | 2009-07-26 16:19:57 +0200 (So, 26 Jul 2009) | 1 line
#6577: fix (hopefully) all links to builtin instead of module/class-specific objects.
........
Diffstat (limited to 'Doc/library/dl.rst')
-rw-r--r-- | Doc/library/dl.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/dl.rst b/Doc/library/dl.rst index fdda2f9..a383729 100644 --- a/Doc/library/dl.rst +++ b/Doc/library/dl.rst @@ -44,12 +44,12 @@ The :mod:`dl` module defines the following constants: .. data:: RTLD_LAZY - Useful as an argument to :func:`open`. + Useful as an argument to :func:`.open`. .. data:: RTLD_NOW - Useful as an argument to :func:`open`. Note that on systems which do not + Useful as an argument to :func:`.open`. Note that on systems which do not support immediate binding, this constant will not appear in the module. For maximum portability, use :func:`hasattr` to determine if the system supports immediate binding. @@ -78,7 +78,7 @@ the fact that using this module is usually a bad alternative. Dl Objects ---------- -Dl objects, as returned by :func:`open` above, have the following methods: +Dl objects, as returned by :func:`.open` above, have the following methods: .. method:: dl.close() |