diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-22 21:23:22 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-22 21:23:22 (GMT) |
commit | ffbe68723a5cb124a1e018d05af9e279ae1ad6fe (patch) | |
tree | bda5a40b89973ee45d27f9685c527f6f59533b56 /Doc/lib/librexec.tex | |
parent | 7b8b125fa6a24b7c400b4750ee204c2a56f7f596 (diff) | |
download | cpython-ffbe68723a5cb124a1e018d05af9e279ae1ad6fe.zip cpython-ffbe68723a5cb124a1e018d05af9e279ae1ad6fe.tar.gz cpython-ffbe68723a5cb124a1e018d05af9e279ae1ad6fe.tar.bz2 |
Make internal module references hyperlinks wherever it makes sense.
Diffstat (limited to 'Doc/lib/librexec.tex')
-rw-r--r-- | Doc/lib/librexec.tex | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/lib/librexec.tex b/Doc/lib/librexec.tex index a7e8913..1c4c77c 100644 --- a/Doc/lib/librexec.tex +++ b/Doc/lib/librexec.tex @@ -1,7 +1,7 @@ \section{\module{rexec} --- - Basic restricted execution framework.} -\declaremodule{standard}{rexec} + Restricted execution framework} +\declaremodule{standard}{rexec} \modulesynopsis{Basic restricted execution framework.} @@ -26,7 +26,7 @@ Returns an instance of the \class{RExec} class. \var{hooks} is an instance of the \class{RHooks} class or a subclass of it. If it is omitted or \code{None}, the default \class{RHooks} class is instantiated. -Whenever the \module{RExec} module searches for a module (even a +Whenever the \module{rexec} module searches for a module (even a built-in one) or reads a module's code, it doesn't actually go out to the file system itself. Rather, it calls methods of an \class{RHooks} instance that was passed to or created by its constructor. (Actually, @@ -85,7 +85,7 @@ the module is loaded) for unrestricted code. \begin{memberdesc}{ok_posix_names} % Should this be called ok_os_names? -Contains the names of the functions in the \module{os} module which will be +Contains the names of the functions in the \refmodule{os} module which will be available to programs running in the restricted environment. The value for \class{RExec} is \code{('error',} \code{'fstat',} \code{'listdir',} \code{'lstat',} \code{'readlink',} \code{'stat',} @@ -95,7 +95,7 @@ value for \class{RExec} is \code{('error',} \code{'fstat',} \end{memberdesc} \begin{memberdesc}{ok_sys_names} -Contains the names of the functions and variables in the \module{sys} +Contains the names of the functions and variables in the \refmodule{sys} module which will be available to programs running in the restricted environment. The value for \class{RExec} is \code{('ps1',} \code{'ps2',} \code{'copyright',} \code{'version',} \code{'platform',} |