blob: fe92d9797a70d13e60f29f43cf4ec69111e36105 [file] [log] [blame]
Guido van Rossumecde7811995-03-28 13:35:14 +00001\chapter{UNIX Specific Services}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00002
3The modules described in this chapter provide interfaces to features
Guido van Rossum6bb1adc1995-03-13 10:03:32 +00004that are unique to the \UNIX{} operating system, or in some cases to
Guido van Rossumecde7811995-03-28 13:35:14 +00005some or many variants of it. Here's an overview:
6
7\begin{description}
8
9\item[posix]
10--- The most common Posix system calls (normally used via module \code{os}).
11
12\item[posixpath]
13--- Common Posix pathname manipulations (normally used via \code{os.path}).
14
15\item[pwd]
16--- The password database (\code{getpwnam()} and friends).
17
18\item[grp]
19--- The group database (\code{getgrnam()} and friends).
20
21\item[dbm]
22--- The standard ``database'' interface, based on \code{ndbm}.
23
24\item[gdbm]
25--- GNU's reinterpretation of dbm.
26
27\item[termios]
28--- Posix style tty control.
29
30\item[fcntl]
31--- The \code{fcntl()} and \code{ioctl()} system calls.
32
33\item[posixfile]
34--- A file-like object with support for locking.
35
36\end{description}