summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-07-19 01:17:15 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2001-07-19 01:17:15 (GMT)
commit28bafb8b5dc75b39c7bd2b5f76ce12e25d215481 (patch)
treeca7a827d7a1acaacffef9fe9fbaa94c2e087ec3f
parentb39fa8a75b95a5b906dde28d3c2789f64ae1dbfb (diff)
downloadcpython-28bafb8b5dc75b39c7bd2b5f76ce12e25d215481.zip
cpython-28bafb8b5dc75b39c7bd2b5f76ce12e25d215481.tar.gz
cpython-28bafb8b5dc75b39c7bd2b5f76ce12e25d215481.tar.bz2
Fix a few typos
-rw-r--r--Doc/lib/libsys.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libsys.tex b/Doc/lib/libsys.tex
index 0503024..53c8c42 100644
--- a/Doc/lib/libsys.tex
+++ b/Doc/lib/libsys.tex
@@ -340,12 +340,12 @@ else:
\versionadded{2.0}
\end{funcdesc}
-\begin{funcdesc}{sertdlopenflags}{n}
+\begin{funcdesc}{setdlopenflags}{n}
Set the flags used by the interpreter for \cfunction{dlopen()}
calls, such as when the interpreter loads extension modules. Among
other things, this will enable a lazy resolving of symbols when
- imporing a module, if called as \code{sys.setdlopenflags(0)}. To
- share symols across extension modules, call as
+ importing a module, if called as \code{sys.setdlopenflags(0)}. To
+ share symbols across extension modules, call as
\code{sys.setdlopenflags(dl.RTLD_NOW | dl.RTLD_GLOBAL)}. Symbolic
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