mirror of
https://github.com/python/cpython.git
synced 2025-09-13 04:08:37 +00:00
Fix a few typos
This commit is contained in:
parent
b39fa8a75b
commit
28bafb8b5d
1 changed files with 3 additions and 3 deletions
|
@ -340,12 +340,12 @@ else:
|
||||||
\versionadded{2.0}
|
\versionadded{2.0}
|
||||||
\end{funcdesc}
|
\end{funcdesc}
|
||||||
|
|
||||||
\begin{funcdesc}{sertdlopenflags}{n}
|
\begin{funcdesc}{setdlopenflags}{n}
|
||||||
Set the flags used by the interpreter for \cfunction{dlopen()}
|
Set the flags used by the interpreter for \cfunction{dlopen()}
|
||||||
calls, such as when the interpreter loads extension modules. Among
|
calls, such as when the interpreter loads extension modules. Among
|
||||||
other things, this will enable a lazy resolving of symbols when
|
other things, this will enable a lazy resolving of symbols when
|
||||||
imporing a module, if called as \code{sys.setdlopenflags(0)}. To
|
importing a module, if called as \code{sys.setdlopenflags(0)}. To
|
||||||
share symols across extension modules, call as
|
share symbols across extension modules, call as
|
||||||
\code{sys.setdlopenflags(dl.RTLD_NOW | dl.RTLD_GLOBAL)}. Symbolic
|
\code{sys.setdlopenflags(dl.RTLD_NOW | dl.RTLD_GLOBAL)}. Symbolic
|
||||||
names for the flag modules can be either found in the \refmodule{dl}
|
names for the flag modules can be either found in the \refmodule{dl}
|
||||||
module, or in the \module{DLFCN} module. If \module{DLFCN} is not
|
module, or in the \module{DLFCN} module. If \module{DLFCN} is not
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue