summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorAndrew Kuchling <amk@amk.ca>2013-06-21 14:58:41 (GMT)
committerAndrew Kuchling <amk@amk.ca>2013-06-21 14:58:41 (GMT)
commitc61b9130786229aea79dbe2b19b46db020b0632b (patch)
treeb07f235d7a21d2f3636df3f3fbb6e45df87e9f17 /Python/sysmodule.c
parent3468d25a80b6d080b2a90d596ba4c3f6c2618d39 (diff)
downloadcpython-c61b9130786229aea79dbe2b19b46db020b0632b.zip
cpython-c61b9130786229aea79dbe2b19b46db020b0632b.tar.gz
cpython-c61b9130786229aea79dbe2b19b46db020b0632b.tar.bz2
#13226: update references from ctypes/DLFCN modules to os module
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 20792c2..2680e6b 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -774,7 +774,7 @@ Set the flags used by the interpreter for dlopen calls, such as when the\n\
interpreter loads extension modules. Among other things, this will enable\n\
a lazy resolving of symbols when importing a module, if called as\n\
sys.setdlopenflags(0). To share symbols across extension modules, call as\n\
-sys.setdlopenflags(ctypes.RTLD_GLOBAL). Symbolic names for the flag modules\n\
+sys.setdlopenflags(os.RTLD_GLOBAL). Symbolic names for the flag modules\n\
can be found in the os module (RTLD_xxx constants, e.g. os.RTLD_LAZY).");
static PyObject *
@@ -790,7 +790,7 @@ PyDoc_STRVAR(getdlopenflags_doc,
"getdlopenflags() -> int\n\
\n\
Return the current value of the flags that are used for dlopen calls.\n\
-The flag constants are defined in the ctypes and DLFCN modules.");
+The flag constants are defined in the os module.");
#endif /* HAVE_DLOPEN */