diff options
author | Fred Drake <fdrake@acm.org> | 1999-06-11 18:28:37 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-06-11 18:28:37 (GMT) |
commit | 2f9790195b2b47466cdd644556aa36fdf83bd5ab (patch) | |
tree | e56edefe57f857ab2f0f1c069b3f2c05c963844c | |
parent | 60a3bd81306f2d3c818a4765c55a6785e083efff (diff) | |
download | cpython-2f9790195b2b47466cdd644556aa36fdf83bd5ab.zip cpython-2f9790195b2b47466cdd644556aa36fdf83bd5ab.tar.gz cpython-2f9790195b2b47466cdd644556aa36fdf83bd5ab.tar.bz2 |
Added 'ce' to the list of "registered" values for os.name.
Make references to the posix module hyperlinks.
-rw-r--r-- | Doc/lib/libos.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index c9a4804..d150776 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -7,10 +7,10 @@ This module provides a more portable way of using operating system (OS) dependent functionality than importing an OS dependent built-in -module like \module{posix} or \module{nt}. +module like \refmodule{posix} or \module{nt}. This module searches for an OS dependent built-in module like -\module{mac} or \module{posix} and exports the same functions and data +\module{mac} or \refmodule{posix} and exports the same functions and data as found there. The design of all Python's built-in OS dependent modules is such that as long as the same functionality is available, it uses the same interface; e.g., the function @@ -54,7 +54,7 @@ When exceptions are strings, the string for the exception is \begin{datadesc}{name} The name of the OS dependent module imported. The following names have currently been registered: \code{'posix'}, \code{'nt'}, -\code{'dos'}, \code{'mac'}, \code{'os2'}. +\code{'dos'}, \code{'mac'}, \code{'os2'}, \code{'ce'}. \end{datadesc} \begin{datadesc}{path} |