summaryrefslogtreecommitdiffstats
path: root/Doc/libunix.tex
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-03-28 13:35:14 (GMT)
committerGuido van Rossum <guido@python.org>1995-03-28 13:35:14 (GMT)
commitecde781dd10cccf97688811743dcda7b2a8d25ae (patch)
tree9c883726ce1f433c4ced05f9098e78d18919b7a3 /Doc/libunix.tex
parent557ed94ebbad49ec0f1ffa1b1b911a4ba1162c51 (diff)
downloadcpython-ecde781dd10cccf97688811743dcda7b2a8d25ae.zip
cpython-ecde781dd10cccf97688811743dcda7b2a8d25ae.tar.gz
cpython-ecde781dd10cccf97688811743dcda7b2a8d25ae.tar.bz2
restructured library manual accordiung to functional group
Diffstat (limited to 'Doc/libunix.tex')
-rw-r--r--Doc/libunix.tex35
1 files changed, 33 insertions, 2 deletions
diff --git a/Doc/libunix.tex b/Doc/libunix.tex
index eca2371..fe92d97 100644
--- a/Doc/libunix.tex
+++ b/Doc/libunix.tex
@@ -1,5 +1,36 @@
-\chapter{UNIX ONLY}
+\chapter{UNIX Specific Services}
The modules described in this chapter provide interfaces to features
that are unique to the \UNIX{} operating system, or in some cases to
-some or many variants of it.
+some or many variants of it. Here's an overview:
+
+\begin{description}
+
+\item[posix]
+--- The most common Posix system calls (normally used via module \code{os}).
+
+\item[posixpath]
+--- Common Posix pathname manipulations (normally used via \code{os.path}).
+
+\item[pwd]
+--- The password database (\code{getpwnam()} and friends).
+
+\item[grp]
+--- The group database (\code{getgrnam()} and friends).
+
+\item[dbm]
+--- The standard ``database'' interface, based on \code{ndbm}.
+
+\item[gdbm]
+--- GNU's reinterpretation of dbm.
+
+\item[termios]
+--- Posix style tty control.
+
+\item[fcntl]
+--- The \code{fcntl()} and \code{ioctl()} system calls.
+
+\item[posixfile]
+--- A file-like object with support for locking.
+
+\end{description}